Skip to content

Instantly share code, notes, and snippets.

@zackdouglas
Created March 29, 2013 21:53
Show Gist options
  • Save zackdouglas/5273944 to your computer and use it in GitHub Desktop.
Save zackdouglas/5273944 to your computer and use it in GitHub Desktop.
Playing with Python `with` statement
# $ python -i withtest.py
# initializing <__main__.cex instance at 0x10f219e18> () {}
# entering <__main__.cex instance at 0x10f219e18> () {}
# with <__main__.cex instance at 0x10f219e18>
# exiting <__main__.cex instance at 0x10f219e18> (None, None, None) {}
class cex:
def __enter__(slf, *a, **k):
print 'entering', slf, a, k
return slf
def __exit__(slf, *a, **k):
print 'exiting', slf, a, k
def __init__(slf, *a, **k):
print 'initializing', slf, a, k
with cex() as xec:
print 'with', xec
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment