DRYな備忘録

Don't Repeat Yourself.

2013-07-29から1日間の記事一覧

【memo】Pythonの@classmethod

[22:48:38] % python Python 3.3.2 (default, Jul 19 2013, 08:43:31) [GCC 4.4.5] on linux Type "help", "copyright", "credits" or "license" for more information. >>> class Base: ... def func_a(self): ... print('This is func A') ... >>> class F…