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 7e4b2a0 commit c6bbb0eCopy full SHA for c6bbb0e
tests/circuitpython/traceback_test.py
@@ -21,7 +21,7 @@ def fun():
21
print("\nLimit=0 Trace:")
22
traceback.print_exception(None, exc, exc.__traceback__, limit=0)
23
print("\nLimit=-1 Trace:")
24
- traceback.print_exception(None, exc, exc.__traceback__, limit=-1)
+ print(traceback.format_exception(None, exc, exc.__traceback__, limit=-1), end="")
25
26
27
class NonNativeException(Exception):
0 commit comments