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 davin
Recipients abarry, davin, jnoller, ppperry, sbt
Date 2016-07-03.04:25:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1467519920.9.0.6054631948.issue27081@psf.upfronthosting.co.za>
In-reply-to
Content
The spawned process (you appear to have run on Windows, so I'm assuming spawn but that's not so significant) has triggered an unhandled exception.  If the triggering and subsequent sending of the traceback to stderr is synchronous and completes before Python actually kills the process, then the original "one would expect" statement would make sense.  Removing the use of the Queue entirely and substituting the use of a socket to communicate from the child (spawned) process to some distinct listener process results in only a portion of the traceback text being received by the listener (or sometimes little to none of the traceback text).  This suggests that the original premise is false and the expectation inaccurate.
History
Date User Action Args
2016-07-03 04:25:21davinsetrecipients: + davin, jnoller, sbt, ppperry, abarry
2016-07-03 04:25:21davinsetmessageid: <1467519920.9.0.6054631948.issue27081@psf.upfronthosting.co.za>
2016-07-03 04:25:20davinlinkissue27081 messages
2016-07-03 04:25:19davincreate