commit | f2705aebb04a1c3f758d7f3383b981e1673525b7 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@krypto.org> | Sat Nov 10 21:13:20 2012 -0800 |
committer | Gregory P. Smith <greg@krypto.org> | Sat Nov 10 21:13:20 2012 -0800 |
tree | 5925ae4bb0c10a07d71b2a9e43ae2dce2e62eed2 | |
parent | c1ce93a4ab0c6e1ed5e7e013789a669871b2257d [diff] [blame] |
Fixes issue #14396: Handle the odd rare case of waitpid returning 0 when not expected in subprocess.Popen.wait().
diff --git a/Misc/NEWS b/Misc/NEWS index a670e20..c27f829 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -143,6 +143,9 @@ Library ------- +- Issue #14396: Handle the odd rare case of waitpid returning 0 when not + expected in subprocess.Popen.wait(). + - Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. Patch by Serhiy Storchaka.