hot questions tagged python2.6 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T05:08:24Zhttp://stackoverflow.com/feeds/tag?tagnames=python2.6&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1854216/raise-unhandled-exceptions-in-a-thread-in-the-main-thread1Raise unhandled exceptions in a thread in the main thread?Anacrolix2009-12-06T03:05:50Z2009-12-06T22:45:19Z
<p>There are some similar questions, but none supply the answer I require.</p>
<p>If I create threads via <code>threading.Thread</code>, which then throw exceptions which are unhandled, those threads are terminated. I wish to retain the default print out of the exception details with the stack trace, but bring down the whole process as well. </p>
<p>I've considered that it might be possible to catch all exceptions in the threads, and reraise them on the main thread object, or perhaps it's possible to manually perform the default exception handling, and then raise a <code>SystemExit</code> on the main thread.</p>
<p>What's the best way to go about this?</p>