简体   繁体   中英

traceback.format_exc/print_exc returns None when expecting traceback

I can't figure out why traceback.format_exc() is returning "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 3rd line, I'd 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 

尝试在my_excepthook中更改为:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM