Should I prefer sys.exc_info() over sys.last_value and friends (sys.last_type, sys.last_traceback)?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Looking at the documentation of sys.last_value and friends:

Their intended use is to allow an interactive user to import a debugger module and engage in post-mortem debugging without having to re-execute the command that caused the error.

So, if you are in an interpreter doing debugging I suggest using sys.last_value, but in a script I suggest you to use sys.exc_info().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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