summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2015-11-16 02:26:11 (GMT)
committerGregory P. Smith <greg@krypto.org>2015-11-16 02:26:11 (GMT)
commit2cd1b3b08912133ff3d33755a9949c2aa0155b95 (patch)
tree8ec5a6388f67724239091a5b318975ef7fb41716 /Misc
parentfcc2e71e99edb668cad539dc8fa9f259d0b389b6 (diff)
parenta0c9caad66f01328155177180df1c46fe7c62e57 (diff)
downloadcpython-2cd1b3b08912133ff3d33755a9949c2aa0155b95.zip
cpython-2cd1b3b08912133ff3d33755a9949c2aa0155b95.tar.gz
cpython-2cd1b3b08912133ff3d33755a9949c2aa0155b95.tar.bz2
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.
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 f0ade03..41ed262 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -70,6 +70,10 @@ Core and Builtins
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 #25590: In the Readline completer, only call getattr() once per
attribute.