]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-30418: Popen.communicate() always ignore EINVAL (#2002) (#2005)
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 8 Jun 2017 16:20:46 +0000 (18:20 +0200)
committerGitHub <noreply@github.com>
Thu, 8 Jun 2017 16:20:46 +0000 (18:20 +0200)
commitdf04c088493bdbc2defea5e225a94e9bdd8e759f
tree15a2bec7cab88ac278ef2da01cf6da460d897fee
parenta0b9088881b8fcfda864070335b249071508ee0c
bpo-30418: Popen.communicate() always ignore EINVAL (#2002) (#2005)

On Windows, subprocess.Popen.communicate() now also ignore EINVAL
on stdin.write() if the child process is still running but closed the
pipe.
(cherry picked from commit d52aa31378ae43e044a300edfe8285954c167216)
Lib/subprocess.py
Misc/NEWS