summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-06-08 16:20:46 (GMT)
committerGitHub <noreply@github.com>2017-06-08 16:20:46 (GMT)
commitdf04c088493bdbc2defea5e225a94e9bdd8e759f (patch)
tree15a2bec7cab88ac278ef2da01cf6da460d897fee /Misc/NEWS
parenta0b9088881b8fcfda864070335b249071508ee0c (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 997058b..78ec9f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.