diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-06-08 16:20:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-08 16:20:46 (GMT) |
commit | df04c088493bdbc2defea5e225a94e9bdd8e759f (patch) | |
tree | 15a2bec7cab88ac278ef2da01cf6da460d897fee /Misc/NEWS | |
parent | a0b9088881b8fcfda864070335b249071508ee0c (diff) | |
download | cpython-df04c088493bdbc2defea5e225a94e9bdd8e759f.zip cpython-df04c088493bdbc2defea5e225a94e9bdd8e759f.tar.gz cpython-df04c088493bdbc2defea5e225a94e9bdd8e759f.tar.bz2 |
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)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -56,6 +56,9 @@ Extension Modules Library ------- +- bpo-30418: On Windows, subprocess.Popen.communicate() now also ignore EINVAL + on stdin.write() if the child process is still running but closed the pipe. + - bpo-30378: Fix the problem that logging.handlers.SysLogHandler cannot handle IPv6 addresses. |