Skip to content

Instantly share code, notes, and snippets.

@hub-cap
Created April 26, 2013 16:00
Show Gist options
  • Save hub-cap/5468366 to your computer and use it in GitHub Desktop.
Save hub-cap/5468366 to your computer and use it in GitHub Desktop.
>>> class A(object):
... _something = 'foo'
...
>>> class B(A):
... _something = 'bar'
... @classmethod
... def foo(cls):
... print cls._something
...
>>> B.foo()
bar
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment