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?
|
1
|
|
|
|
|
|
format_exc is really just
So if you have the exception type, value, and traceback ready, it should be easy. If you have just the exception, notice that
where limit defaults to None. |
||
|
|
|
|
|
||
|
|
|
|
Have you tried traceback.print_tb or traceback.format_tb? |
|||
|
|
