Skip to content

Instantly share code, notes, and snippets.

@hacosta
Created February 10, 2015 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hacosta/cd225c7f6dcfdcb247cd to your computer and use it in GitHub Desktop.
Save hacosta/cd225c7f6dcfdcb247cd to your computer and use it in GitHub Desktop.
#!/usr/bin/python2
class Foo:
def __init__(self):
self.y = 4
@property
def x(self):
return 2 + 2
f = Foo()
print(f.x == f.y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment