Created
November 27, 2013 13:25
-
-
Save tyteen4a03/7675622 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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