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 | f60845b70a78c0e29dc0e865c6cd9e2e35e635f5 (patch) | |
tree | 0e5bff369d2578750ed4a2e0be30cdae33fd9d8d /Misc | |
parent | 5081957642caffae192b6e3f045a92b55afc8e9c (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |