Skip to content

Instantly share code, notes, and snippets.

@dstufft
Created January 13, 2012 02:58
Show Gist options
  • Save dstufft/1604351 to your computer and use it in GitHub Desktop.
Save dstufft/1604351 to your computer and use it in GitHub Desktop.
>>> class A(object):
... blah = []
... def hmm(self):
... self.blah.append("hmm")
...
>>> test = A()
>>> test.hmm()
>>> test.blah
['hmm']
>>> test2 = A()
>>> test2.blah
['hmm']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment