Traceback.format_exc / print_exc returns None when waiting for a trace

I cannot understand why traceback.format_exc () returns "None" in the following example:

#!/usr/bin/env python

import sys
import traceback

def my_excepthook(type, value, tb):
    print type.__name__
    print value
    # the problem: why does this return "None"?
    print traceback.format_exc(tb) # see http://docs.python.org/library/traceback.html#traceback.format_exc

sys.excepthook = my_excepthook # see http://docs.python.org/library/sys.html#sys.excepthook

# some code to generate a naturalistic exception
a = "text"
b = 5
error = a + b

Using Python 2.7.1, I get the following output:

TypeError
cannot concatenate 'str' and 'int' objects
None

Instead of "None" on the third line, I expect to get what happens when I comment out the sys.excepthook line:

Traceback (most recent call last):
  File "log-test.py", line 17, in <module>
    error = a+b 
+5
source share
1 answer

Try changing this in my_excepthook:

print "".join(traceback.format_exception(type, value, tb))
+4
source

All Articles