Created
August 29, 2015 08:00
-
-
Save lancelote/8c0804b148887e993da6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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