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 vstinner
Date 2010-07-31.09:51:44
SpamBayes Score 0.0070224446
Marked as misclassified No
Message-id <1280569907.44.0.401416640246.issue9433@psf.upfronthosting.co.za>
In-reply-to
Content
On Windows, subprocess doesn't support close_fds=True if stdin, stdout or stderr is redirected to a pipe.

The problem is in the work function: popen = Popen([sys.executable, '-E', '-m', 'test.regrtest', ...], ..., stdout=PIPE, stderr=PIPE, close_fds=True).
History
Date User Action Args
2010-07-31 09:51:47vstinnersetrecipients: + vstinner
2010-07-31 09:51:47vstinnersetmessageid: <1280569907.44.0.401416640246.issue9433@psf.upfronthosting.co.za>
2010-07-31 09:51:45vstinnerlinkissue9433 messages
2010-07-31 09:51:44vstinnercreate