[issue9433] regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows

STINNER Victor report at bugs.python.org
Sat Jul 31 11:51:47 CEST 2010


New submission from STINNER Victor <victor.stinner at haypocalc.com>:

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).

----------
messages: 112125
nosy: haypo
priority: normal
severity: normal
status: open
title: regrtest.py -j 2 doesn't work on Windows: remove close_fds=True on Windows
versions: Python 3.2

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9433>
_______________________________________


More information about the Python-bugs-list mailing list