Skip to content

Instantly share code, notes, and snippets.

@Enome
Created April 24, 2011 09:37
Show Gist options
  • Save Enome/939447 to your computer and use it in GitHub Desktop.
Save Enome/939447 to your computer and use it in GitHub Desktop.
Add property to instance.
>>> class Test(object):
... pass
...
>>> t = Test()
>>> def fail():
... raise Exception('raise')
...
>>> t.test = property( fail )
>>> t.test
<property object at 0x7fc2e896c470>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment