From: Gregory P. Smith Date: Mon, 16 Nov 2015 02:26:11 +0000 (-0800) Subject: Fix issue #6973: When we know a subprocess.Popen process has died, do X-Git-Tag: v3.5.1rc1~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cd1b3b08912133ff3d33755a9949c2aa0155b95;p=python Fix issue #6973: When we know a subprocess.Popen process has died, do not allow the send_signal(), terminate(), or kill() methods to do anything as they could potentially signal a different process. --- 2cd1b3b08912133ff3d33755a9949c2aa0155b95 diff --cc Misc/NEWS index f0ade032ac,2d0755f931..41ed26213b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -70,6 -106,12 +70,10 @@@ Core and Builtin Library ------- + - Issue #6973: When we know a subprocess.Popen process has died, do + not allow the send_signal(), terminate(), or kill() methods to do + anything as they could potentially signal a different process. + -- Issue #25578: Fix (another) memory leak in SSLSocket.getpeercer(). - - Issue #25590: In the Readline completer, only call getattr() once per attribute.