We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 448eb1b commit 9ecb905Copy full SHA for 9ecb905
tests/circuitpython/traceback_test.py
@@ -15,7 +15,7 @@ def fun():
15
print("\nNo Trace:")
16
traceback.print_exception(None, exc, None)
17
print("\nDefault Trace:")
18
- traceback.print_exception(None, exc, exc.__traceback__)
+ traceback.print_exception(exc)
19
print("\nLimit=1 Trace:")
20
traceback.print_exception(None, exc, exc.__traceback__, limit=1)
21
print("\nLimit=0 Trace:")
0 commit comments