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 vstinner
Recipients jpe, steve.dower, tim.golden, vstinner, zach.ware
Date 2015-09-03.11:14:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441278844.79.0.163179206997.issue23719@psf.upfronthosting.co.za>
In-reply-to
Content
The change ed0e6a9c11af replaced os.fork() with subprocess to try to fix race conditions in test_eintr (the test sometimes hangs on FreeBSD buildbots). os.fork() is not available on Windows, so this change should help to port test_eintr to Windows.

About win32-sleep-test.diff: I'm not sure that it's a good idea to introduce a new thread in test_eintr. Signal handlers is more complex when we have multiple threads. Would it be possible to spawn a new process which will send a signal every N seconds to its parent?
History
Date User Action Args
2015-09-03 11:14:04vstinnersetrecipients: + vstinner, jpe, tim.golden, zach.ware, steve.dower
2015-09-03 11:14:04vstinnersetmessageid: <1441278844.79.0.163179206997.issue23719@psf.upfronthosting.co.za>
2015-09-03 11:14:04vstinnerlinkissue23719 messages
2015-09-03 11:14:04vstinnercreate