目の前に僕らの道がある

勉強会とか、技術的にはまったことのメモ

python

テスト駆動開発入門をPythonで写経してみた。 2

第2章 #coding : utf-8 """ テスト駆動開発入門2章 """ import unittest class TestMoney(unittest.TestCase): def testMultiplication(self): five = Dollar(5) product = five.times(2) self.assertEqual(10, product.amount) product = five.times(3) sel…

Python Code Reading 8に行ってきました。

T/Oです。メモ的な何かはwikiに残してます。

epydocのマニュアルって誰も日本語訳している人いないっぽいですね。

T/O