Created
March 10, 2016 02:39
-
-
Save cstoku/cc16f0130f2f16d4e4f4 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
| >>> try: | |
| ... raise Exception() | |
| ... except Exception as e: | |
| ... raise e | |
| ... finally: | |
| ... print('final') | |
| ... | |
| final | |
| Traceback (most recent call last): | |
| File "<stdin>", line 4, in <module> | |
| File "<stdin>", line 2, in <module> | |
| Exception |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment