Class method differences in Python: bound, unbound and static
- by Franck Mesirard
What is the difference between the following class methods?
Is it that one is static and the other is not?
Class Test(Object):
def method_one(self):
print "Called method_one"
def method_two():
print "Called method_two"
a_test = Test()
a_test.method_one()
a_test.method_two()