Skip to content

Instantly share code, notes, and snippets.

@holandes22
Created August 12, 2013 11:38
Show Gist options
  • Save holandes22/6210138 to your computer and use it in GitHub Desktop.
Save holandes22/6210138 to your computer and use it in GitHub Desktop.
from contextlib import contextmanager
@contextmanager
def compliment():
print 'starting compliment'
yield
print 'done complimenting'
with compliment():
print 'You suck'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment