Catching an exception that would print like this:

Traceback (most recent call last):
  File "c:/tmp.py", line 1, in <module>
    4 / 0
ZeroDivisionError: integer division or modulo by zero

I want to format it into:

ZeroDivisonError, tmp.py, 1
link|improve this question

feedback

3 Answers

up vote 16 down vote accepted
import sys, os
try:
    raise NotImplementedError("No error")
except Exception, e:
    exc_type, exc_obj, exc_tb = sys.exc_info()
    fname = os.path.split(exc_tb.tb_frame.f_code.co_filename)[1]      
    print(exc_type, fname, exc_tb.tb_lineno)
link|improve this answer
2  
You should be careful about unpacking sys.exc_info() into local variables, since if you get an exception in the except handler, the local vars could get kept in a circular reference and not GC'd. Best practice is to always just use slices off of sys.exc_info() instead. Or use other modules like traceback, as other posters have suggested. – Daniel Pryden Aug 17 '09 at 23:13
is tb just exc_tb? and os.path.split(blabla)[1] is os.path.basename(balbal) – sunqiang Aug 20 '09 at 1:23
2  
Is this thread-safe? – RobM Mar 25 '11 at 15:58
feedback
try:
    bla
except Exception, e:
    import traceback, os.path
    top = traceback.extract_stack()[-1]
    print ", ".join([type(e).__name__, os.path.basename(top[0]), str(top[1])])
link|improve this answer
feedback

Use the built-in traceback module.

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.