Skip to content

Instantly share code, notes, and snippets.

@patrys
Created June 22, 2011 09:33
Show Gist options
  • Save patrys/1039760 to your computer and use it in GitHub Desktop.
Save patrys/1039760 to your computer and use it in GitHub Desktop.
Implements the awesome pattern
class Barney(object):
def __enter__(self):
print 'legen...'
def __exit__(self, exc_type, exc_value, traceback):
print '...dary'
with Barney():
print 'wait for it'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment