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 rosslagerwall
Recipients MrJean1, OG7, georg.brandl, giampaolo.rodola, lucaspmelo, pitrou, rosslagerwall
Date 2011-01-02.14:50:30
SpamBayes Score 0.0013057911
Marked as misclassified No
Message-id <1293979834.0.0.400038685712.issue5870@psf.upfronthosting.co.za>
In-reply-to
Content
I think if you look closely at the patch, the fd does not stay open the whole time. It is opened if necessary in _get_handles() with e.g.:

elif stdin == DEVNULL:
    p2cread = self._get_devnull()

and then closed in _execute_child() with:

if hasattr(self, '_devnull'):
    os.close(self._devnull)

which is executed from __init__(). So I don't think it stays open for eternity :-)
History
Date User Action Args
2011-01-02 14:50:34rosslagerwallsetrecipients: + rosslagerwall, georg.brandl, pitrou, giampaolo.rodola, OG7, MrJean1, lucaspmelo
2011-01-02 14:50:33rosslagerwallsetmessageid: <1293979834.0.0.400038685712.issue5870@psf.upfronthosting.co.za>
2011-01-02 14:50:30rosslagerwalllinkissue5870 messages
2011-01-02 14:50:30rosslagerwallcreate