Skip to content

Instantly share code, notes, and snippets.

@crass
Created January 13, 2012 03:08
Show Gist options
  • Save crass/1604375 to your computer and use it in GitHub Desktop.
Save crass/1604375 to your computer and use it in GitHub Desktop.
>>> class A(object):
... cvar = 1
... def __init__(self):
... self.ivar = 2
...
>>> a=A()
>>> a.cvar, a.ivar
(1, 2)
>>> a.__dict__
{'ivar': 2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment