Created
March 29, 2013 21:53
-
-
Save zackdouglas/5273944 to your computer and use it in GitHub Desktop.
Playing with Python `with` statement
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $ 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