[issue10763] subprocess.communicate() doesn't close pipes on Windows

2010-12-25 Thread STINNER Victor
STINNER Victor added the comment: Fixed by r87485 (Python 3.2). I don't want to fix it in 2.7 or 3.1, because maybe someone relies on this bug and it's a minor bug :-) Reopen the issue if you would like a backport. -- resolution: -> fixed status: open -> closed _

[issue10763] subprocess.communicate() doesn't close pipes on Windows

2010-12-24 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gps ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue10763] subprocess.communicate() doesn't close pipes on Windows

2010-12-23 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +amaury.forgeotdarc, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10763] subprocess.communicate() doesn't close pipes on Windows

2010-12-23 Thread STINNER Victor
New submission from STINNER Victor : If more than one file (stdin, stdout and stderr) are pipes, Popen.communicate() uses threads calling _readerthread() on each pipe. But this method doesn't close the pipes, whereas all other communicate implementations (select, poll and the optimization if t