Skip to content

Instantly share code, notes, and snippets.

@tmerr
Created September 28, 2017 06:40
Show Gist options
  • Save tmerr/3640540d58fc496c40c20826be4f7305 to your computer and use it in GitHub Desktop.
Save tmerr/3640540d58fc496c40c20826be4f7305 to your computer and use it in GitHub Desktop.
import contextlib
contextlib.contextmanager
def bun():
print('top bun')
yield
print('bottom bun')
with bun():
print('meat')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment