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)
commit1f9a8354002dbb29f38bfbd4273ce62e40ac80ba (patch)
treeeaaaf85cefe62ad490202984e2a0dd2a425eabe7 /Misc
parent328dd0d5f3d20c01d85675f6e5d1001dd2a04480 (diff)
downloadcpython-1f9a8354002dbb29f38bfbd4273ce62e40ac80ba.zip
cpython-1f9a8354002dbb29f38bfbd4273ce62e40ac80ba.tar.gz
cpython-1f9a8354002dbb29f38bfbd4273ce62e40ac80ba.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 f2d90fb..5d03fee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,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.