Skip to content

Instantly share code, notes, and snippets.

@jacob414
Created March 1, 2012 11:26
Show Gist options
  • Save jacob414/1949172 to your computer and use it in GitHub Desktop.
Save jacob414/1949172 to your computer and use it in GitHub Desktop.
Simple demo of Altered States decorator
from altered import state
org = {'foo': 'foo'}
@state(org, foo='bar')
def fn():
return org['foo']
# prints 'bar'
print fn()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment