Skip to content

Instantly share code, notes, and snippets.

@tyteen4a03
Created November 27, 2013 13:25
Show Gist options
  • Save tyteen4a03/7675622 to your computer and use it in GitHub Desktop.
Save tyteen4a03/7675622 to your computer and use it in GitHub Desktop.
class Foo(object):
baz = 15
@staticmethod
def bar():
return Foo.baz
class Spam(Foo):
baz = 20
s = Spam()
s.bar() # Outputs 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment