Skip to content

Instantly share code, notes, and snippets.

@amirnissim
Created September 18, 2014 10:19
Show Gist options
  • Save amirnissim/44363cfc3d02ba4d9b4a to your computer and use it in GitHub Desktop.
Save amirnissim/44363cfc3d02ba4d9b4a to your computer and use it in GitHub Desktop.
class Foo():
def __init__(self, name):
self.name = name
def get_name(self):
return self.name
x = Foo('x')
y = Foo('y')
id(x.name) == id(y.name) # False
id(x.get_name) == id(y.get_name) # True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment