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 Bernt.Røskar.Brenna, Segev Finer, eryksun, paul.moore, sbt, steve.dower, tim.golden, vstinner, zach.ware
Date 2017-01-06.16:45:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483721117.64.0.257724925649.issue19764@psf.upfronthosting.co.za>
In-reply-to
Content
Implementing pass_fds on Windows is a problem if Popen has to implement the undocumented use of the STARTUPINFO cbReserved2 and lpReserved2 fields to inherit CRT file descriptors. I suppose we could implement this ourselves in _winapi since it's unlikely that the data format will ever change. Just copy what the CRT's accumulate_inheritable_handles() function does, but constrained by an array of file descriptors.
History
Date User Action Args
2017-01-06 16:45:17eryksunsetrecipients: + eryksun, paul.moore, vstinner, tim.golden, Bernt.Røskar.Brenna, sbt, zach.ware, steve.dower, Segev Finer
2017-01-06 16:45:17eryksunsetmessageid: <1483721117.64.0.257724925649.issue19764@psf.upfronthosting.co.za>
2017-01-06 16:45:17eryksunlinkissue19764 messages
2017-01-06 16:45:17eryksuncreate