Message25694
| 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:50 | admin | link | issue1230540 messages |
| 2007-08-23 14:32:50 | admin | create | |