summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-06-04 00:22:17 (GMT)
committerGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-06-04 00:22:17 (GMT)
commit1ef8c7e886ea5260e5a6967ec2b8a4c32640f1a8 (patch)
treeb8a8ff67c6ffc000f955b87da87ec67d46c6e996 /Misc
parentead9bfc5c392951d8f0d8c537a138df672b762e4 (diff)
downloadcpython-1ef8c7e886ea5260e5a6967ec2b8a4c32640f1a8.zip
cpython-1ef8c7e886ea5260e5a6967ec2b8a4c32640f1a8.tar.gz
cpython-1ef8c7e886ea5260e5a6967ec2b8a4c32640f1a8.tar.bz2
Fixes Issue #26373: subprocess.Popen.communicate now correctly ignores
BrokenPipeError when the child process dies before .communicate() is called in more (all?) circumstances.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6e07c8c..d58485a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -128,6 +128,10 @@ Core and Builtins
Library
-------
+- Issue #26373: subprocess.Popen.communicate now correctly ignores
+ BrokenPipeError when the child process dies before .communicate()
+ is called in more/all circumstances.
+
- Issue #21776: distutils.upload now correctly handles HTTPError.
Initial patch by Claudiu Popa.