Skip to content

Instantly share code, notes, and snippets.

@nvie
Created March 3, 2010 22:58
Show Gist options
  • Save nvie/321150 to your computer and use it in GitHub Desktop.
Save nvie/321150 to your computer and use it in GitHub Desktop.
class Foo:
x = {}
def __init__(self, id):
self.x[id] = id
f1 = Foo(5)
print f1.x # {5:5}, as expected
f2 = Foo(6)
print f2.x # {5:5,6:6} ?!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment