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 pitrou
Recipients db3l, gregory.p.smith, ncoghlan, ned.deily, pitrou, ronaldoussoren, vstinner
Date 2011-01-04.11:15:04
SpamBayes Score 0.0006548182
Marked as misclassified No
Message-id <1294139705.88.0.555064127553.issue8458@psf.upfronthosting.co.za>
In-reply-to
Content
> that race condition, if thats what this is, is likely not OS X
> specific.  the child process could complete or close its fds before we
> reach that code on any OS.  We either need to guard these
> io.open(p2c*...) lines against EBADF OSError's or we should create the
> io wrappers before _execute_child() is called.

Creating them before _execute_child() is the obvious and simple solution
(if my diagnosis is correct). Is there any downside to doing so?
History
Date User Action Args
2011-01-04 11:15:05pitrousetrecipients: + pitrou, gregory.p.smith, db3l, ronaldoussoren, ncoghlan, vstinner, ned.deily
2011-01-04 11:15:05pitrousetmessageid: <1294139705.88.0.555064127553.issue8458@psf.upfronthosting.co.za>
2011-01-04 11:15:04pitroulinkissue8458 messages
2011-01-04 11:15:04pitroucreate