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 zhigang
Recipients zhigang
Date 2009-07-24.07:56:34
SpamBayes Score 1.4248126e-06
Marked as misclassified No
Message-id <1248422197.05.0.784368367425.issue6559@psf.upfronthosting.co.za>
In-reply-to
Content
The current subprocess.Popen() has a boolean close_fds parameter, which
cannot satisfy all the requirements. Eg. want to pass specific fd to
child process, but close others.

This patch adds a extra parameter pass_fds to subprocess.Popen's
__init__(). This parameter only effect when close_fds=True. When
close_fds=True, all fds in pass_fds will not closed before exec.
History
Date User Action Args
2009-07-24 07:56:37zhigangsetrecipients: + zhigang
2009-07-24 07:56:37zhigangsetmessageid: <1248422197.05.0.784368367425.issue6559@psf.upfronthosting.co.za>
2009-07-24 07:56:35zhiganglinkissue6559 messages
2009-07-24 07:56:35zhigangcreate