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 CyberJacob
Recipients CyberJacob, Decorater, ellisj, eric.araujo, mwh, nikratio, tiagoaoa, undercoveridiot
Date 2017-02-24.10:33:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487932419.29.0.323516205291.issue1230540@psf.upfronthosting.co.za>
In-reply-to
Content
Just confirmed, this does affect multiprocessing. script to reproduce:

import sys, multiprocessing

def log_exception(*args):
    print 'got exception %s' % (args,)

sys.excepthook = log_exception

def foo():
    a = 1 / 0

multiprocessing.Process(target=foo).start()

again, just a normal traceback instead of "got exception"
History
Date User Action Args
2017-02-24 10:33:39CyberJacobsetrecipients: + CyberJacob, mwh, ellisj, tiagoaoa, eric.araujo, nikratio, undercoveridiot, Decorater
2017-02-24 10:33:39CyberJacobsetmessageid: <1487932419.29.0.323516205291.issue1230540@psf.upfronthosting.co.za>
2017-02-24 10:33:39CyberJacoblinkissue1230540 messages
2017-02-24 10:33:39CyberJacobcreate