Skip to content

Instantly share code, notes, and snippets.

@gchiam
Created May 2, 2017 06:11
Show Gist options
  • Save gchiam/0094354b3155a636174822b45a208f27 to your computer and use it in GitHub Desktop.
Save gchiam/0094354b3155a636174822b45a208f27 to your computer and use it in GitHub Desktop.
context manager
import contextlib
@contextlib.contextmanager
def cm():
info = {}
print 'start'
yield info
print 'end', info
if __name__ == '__main__':
with cm() as info:
print 'hello'
info['foo'] = 'bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment