diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-11 18:29:12 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-11 18:29:12 (GMT) |
commit | 1f9a8354002dbb29f38bfbd4273ce62e40ac80ba (patch) | |
tree | eaaaf85cefe62ad490202984e2a0dd2a425eabe7 /Misc | |
parent | 328dd0d5f3d20c01d85675f6e5d1001dd2a04480 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |