vote up 3 vote down star
1

I have a traceback object that I want to show in the nice format I get when calling traceback.format_exc() Is there a builtin function for that, or a few lines of code?

flag

3 Answers

vote up 4 vote down check

format_exc is really just

    etype, value, tb = sys.exc_info()
    return ''.join(format_exception(etype, value, tb, limit))

So if you have the exception type, value, and traceback ready, it should be easy. If you have just the exception, notice that format_exception is essentially.

    list = ['Traceback (most recent call last):\n']
    list = list + format_tb(tb, limit)

where limit defaults to None.

link|flag
vote up 2 vote down

traceback docs give few examples and whole set of functions for formatting traceback objects.

link|flag
vote up 2 vote down

Have you tried traceback.print_tb or traceback.format_tb?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.