Skip to content

Instantly share code, notes, and snippets.

@cstoku
Created March 10, 2016 02:39
Show Gist options
  • Select an option

  • Save cstoku/cc16f0130f2f16d4e4f4 to your computer and use it in GitHub Desktop.

Select an option

Save cstoku/cc16f0130f2f16d4e4f4 to your computer and use it in GitHub Desktop.
>>> 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