diff options
author | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-06-04 00:22:17 (GMT) |
---|---|---|
committer | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-06-04 00:22:17 (GMT) |
commit | 1ef8c7e886ea5260e5a6967ec2b8a4c32640f1a8 (patch) | |
tree | b8a8ff67c6ffc000f955b87da87ec67d46c6e996 /Misc | |
parent | ead9bfc5c392951d8f0d8c537a138df672b762e4 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |