Skip to content

Instantly share code, notes, and snippets.

@salmanwahed
Created December 18, 2014 08:28
Show Gist options
  • Save salmanwahed/a0ce99606654189820a1 to your computer and use it in GitHub Desktop.
Save salmanwahed/a0ce99606654189820a1 to your computer and use it in GitHub Desktop.
class A(object):
def foo(self, x):
print "regular foo() method: %s %s" %(self, x)
@classmethod
def cls_foo(cls, x):
print "class method cls_foo(): %s %s" %(cls, x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment