From: Serhiy Storchaka Date: Sat, 28 Feb 2015 10:45:00 +0000 (+0200) Subject: Issue #21619: Popen objects no longer leave a zombie after exit in the with X-Git-Tag: v3.5.0a2~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86ba76570590b10ebd0b6f9b2e53252d8127de0e;p=python Issue #21619: Popen objects no longer leave a zombie after exit in the with statement if the pipe was broken. Patch by Martin Panter. --- 86ba76570590b10ebd0b6f9b2e53252d8127de0e diff --cc Misc/NEWS index fc84b5e9b0,05fde7046d..6bb4580bae --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -13,9 -13,9 +13,12 @@@ Core and Builtin Library ------- + - Issue #21619: Popen objects no longer leave a zombie after exit in the with + statement if the pipe was broken. Patch by Martin Panter. + +- Issue #15955: Add an option to limit the output size in bz2.decompress(). + Patch by Nikolaus Rath. + - Issue #6639: Module-level turtle functions no longer raise TclError after closing the window.