This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ellisj
Recipients
Date 2005-06-30.19:06:10
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
simple script to reproduce:

import sys, threading

def log_exception(*args):
    print 'got exception %s' % (args,)
sys.excepthook = log_exception

def foo():
    a = 1 / 0
threading.Thread(target=foo).start()

Note that a normal traceback is printed instead of "got
exception."
History
Date User Action Args
2007-08-23 14:32:50adminlinkissue1230540 messages
2007-08-23 14:32:50admincreate