summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-11 18:29:12 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-11 18:29:12 (GMT)
commitf60845b70a78c0e29dc0e865c6cd9e2e35e635f5 (patch)
tree0e5bff369d2578750ed4a2e0be30cdae33fd9d8d /Misc
parent5081957642caffae192b6e3f045a92b55afc8e9c (diff)
downloadcpython-f60845b70a78c0e29dc0e865c6cd9e2e35e635f5.zip
cpython-f60845b70a78c0e29dc0e865c6cd9e2e35e635f5.tar.gz
cpython-f60845b70a78c0e29dc0e865c6cd9e2e35e635f5.tar.bz2
Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0e06a1a..c5c2c82 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under
+ Windows when the child process has already exited.
+
- Issue #14195: An issue that caused weakref.WeakSet instances to incorrectly
return True for a WeakSet instance 'a' in both 'a < a' and 'a > a' has been
fixed.