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 gregory.p.smith, neologix, pitrou, sstewartgallus, vstinner
Date 2014-06-02.12:47:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401713233.16.0.612286069766.issue21627@psf.upfronthosting.co.za>
In-reply-to
Content
Since Python 3.4, all file descriptors directly created by Python are marked as non-inheritable. It should now be safe to use subprocess with close_fds=False, but the default value was not changed because third party modules (especially code written in C) may not respect the PEP 446.

If you are interested to change the default value, you should audit the major Python modules on PyPI to check if they were adapted to respect the PEP 446 (mark all file descriptors as non-inheritable).
History
Date User Action Args
2014-06-02 12:47:13vstinnersetrecipients: + vstinner, gregory.p.smith, pitrou, neologix, sstewartgallus
2014-06-02 12:47:13vstinnersetmessageid: <1401713233.16.0.612286069766.issue21627@psf.upfronthosting.co.za>
2014-06-02 12:47:13vstinnerlinkissue21627 messages
2014-06-02 12:47:12vstinnercreate