Skip to content

Instantly share code, notes, and snippets.

@lancelote
Created August 29, 2015 08:00
Show Gist options
  • Select an option

  • Save lancelote/8c0804b148887e993da6 to your computer and use it in GitHub Desktop.

Select an option

Save lancelote/8c0804b148887e993da6 to your computer and use it in GitHub Desktop.
class Test:
def __enter__(self):
print("Start!")
def __exit__(self, exc_type, exc_val, exc_tb):
print("End!")
test = Test()
with test as t:
print("...something...")
## Output:
# Start!
# ..something...
# End!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment