Skip to content

Instantly share code, notes, and snippets.

@Kindari
Created March 9, 2012 01:50
Show Gist options
  • Save Kindari/2004568 to your computer and use it in GitHub Desktop.
Save Kindari/2004568 to your computer and use it in GitHub Desktop.
>>> class Foobar(object):
... CONSTANT = 'test'
... def test(self): print self.CONSTANT
...
>>> Foobar.CONSTANT
'test'
>>> f = Foobar()
>>> f.CONSTANT
'test'
>>> f.test()
test
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment