class TestStaticMethod: @staticmethod def foo(): print 'calling static method foo()'class TestClassMethod: @classmethod def foo(cls): print 'calling class method foo()' print 'foo() is part of class:', cls.__name__
Name (required)
email (will not be published) (required)
Website