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)
Bound method = instance method
Unbound method = static method.