Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

format tracebacks with cause #100

Merged

Conversation

dneuhaeuser-zalando
Copy link
Contributor

closes #99

Here is a script that shows how this changes the traceback formatting:

import sys
import traceback


try:
    try:
        raise ValueError("some value")
    except ValueError:
        raise TypeError("some type")
except Exception:
    exc_value, exc_type, exc_tb = sys.exc_info()
    print("".join(traceback.format_tb(exc_tb)))
    print("=" * 80)
    print("".join(traceback.format_exception(None, exc_type, exc_tb)))
    print("=" * 80)
    print("".join(traceback.format_exception(exc_value, None, exc_tb)))
    print("=" * 80)
    print("".join(traceback.format_exception(exc_value, exc_type, exc_tb)))

Output:

$ python foo.py 
  File "foo.py", line 9, in <module>
    raise TypeError("some type")

================================================================================
Traceback (most recent call last):
  File "foo.py", line 7, in <module>
    raise ValueError("some value")
ValueError: some value

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "foo.py", line 9, in <module>
    raise TypeError("some type")
TypeError: some type

================================================================================
Traceback (most recent call last):
  File "foo.py", line 9, in <module>
    raise TypeError("some type")
NoneType: None

================================================================================
Traceback (most recent call last):
  File "foo.py", line 7, in <module>
    raise ValueError("some value")
ValueError: some value

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "foo.py", line 9, in <module>
    raise TypeError("some type")
TypeError: some type

Copy link
Contributor

@codeboten codeboten left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR! This looks good to me.

@codeboten codeboten merged commit 1c94520 into lightstep:master Aug 26, 2020
dneuhaeuser-zalando added a commit to dneuhaeuser-zalando/lightstep-tracer-python that referenced this pull request Aug 28, 2020
codeboten pushed a commit that referenced this pull request Aug 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Exception __cause__ is ignored
2 participants