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 njs
Recipients njs, pitrou, vstinner
Date 2018-07-17.00:42:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531788180.59.0.56676864532.issue34130@psf.upfronthosting.co.za>
In-reply-to
Content
Huh, that's weird. My first thought was some kind of race condition, but... raise_signal uses raise(), which on Windows should be invoking the signal handler synchronously, so the warning should definitely be printed before raise_signal() returns.

Could the warning be trapped in some buffer? That would be weird too, usually stderr and warnings should not be buffered.

Of course putting a retry loop around the test is an option if we can't figure out how to fix it properly.
History
Date User Action Args
2018-07-17 00:43:00njssetrecipients: + njs, pitrou, vstinner
2018-07-17 00:43:00njssetmessageid: <1531788180.59.0.56676864532.issue34130@psf.upfronthosting.co.za>
2018-07-17 00:43:00njslinkissue34130 messages
2018-07-17 00:42:59njscreate