Created
February 16, 2017 17:50
-
-
Save tkaemming/d613d745afa34d78c10f5c4d666e0f83 to your computer and use it in GitHub Desktop.
This file contains 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
def foo(): | |
bar() | |
def bar(): | |
try: | |
baz() | |
except Exception as error: | |
import traceback | |
traceback.print_exc() | |
def baz(): | |
qux() | |
def qux(): | |
raise NotImplementedError | |
foo() |
This file contains 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
Traceback (most recent call last): | |
File "tb.py", line 6, in bar | |
baz() | |
File "tb.py", line 12, in baz | |
qux() | |
File "tb.py", line 15, in qux | |
raise NotImplementedError | |
NotImplementedError |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment