]> granicus.if.org Git - python/commit
bpo-30418: Popen.communicate() always ignore EINVAL (#2002)
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 8 Jun 2017 15:30:39 +0000 (17:30 +0200)
committerGitHub <noreply@github.com>
Thu, 8 Jun 2017 15:30:39 +0000 (17:30 +0200)
commitd52aa31378ae43e044a300edfe8285954c167216
treea12899c5b00b4b18372ace0f1288a959e0852bda
parent64505a1f6c0af4574e17e823b27ffe24eca44df5
bpo-30418: Popen.communicate() always ignore EINVAL (#2002)

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