Skip to content

Instantly share code, notes, and snippets.

@tmerr
Created September 28, 2017 06:43
Show Gist options
  • Save tmerr/a53979c17bc4503576e6fd00ecd73532 to your computer and use it in GitHub Desktop.
Save tmerr/a53979c17bc4503576e6fd00ecd73532 to your computer and use it in GitHub Desktop.
>>> @contextlib.contextmanager
... def bun():
... print('top bun')
... yield
... print('bottom bun')
...
>>> with bun():
... raise ValueError('no meat!')
...
top bun
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
ValueError: no meat!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment