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 eryksun
Recipients eryksun, paul.moore, steve.dower, tim.golden, zach.ware
Date 2016-09-15.10:42:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473936169.85.0.779071092468.issue28168@psf.upfronthosting.co.za>
In-reply-to
Content
On Unix, waiting on an instance of subprocess.Popen in the main thread is interruptible by Ctrl+C. On Windows, it currently calls _winapi.WaitForSingleObject, which isn't interruptible. It should instead call _winapi.WaitForMultipleObjects, which automatically adds the SIGINT event object from _PyOS_SigintEvent() when called from the main thread.
History
Date User Action Args
2016-09-15 10:42:49eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower
2016-09-15 10:42:49eryksunsetmessageid: <1473936169.85.0.779071092468.issue28168@psf.upfronthosting.co.za>
2016-09-15 10:42:49eryksunlinkissue28168 messages
2016-09-15 10:42:49eryksuncreate