Created
September 28, 2017 06:43
-
-
Save tmerr/a53979c17bc4503576e6fd00ecd73532 to your computer and use it in GitHub Desktop.
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
>>> @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