Skip to content

Instantly share code, notes, and snippets.

@Gerhut
Created August 19, 2013 09:41
Show Gist options
  • Save Gerhut/6267415 to your computer and use it in GitHub Desktop.
Save Gerhut/6267415 to your computer and use it in GitHub Desktop.
Instance method & Class method.
class Cls(object):
def method(self):
return self.__hash__()
obj = Cls()
method = Cls.method
boundMethod = obj.method
print obj.method()
print method(obj)
print boundMethod()
# Same Result.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment