diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-11 18:33:29 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-11 18:33:29 (GMT) |
commit | b69ef16fe63e6de91c5d659bd83d9eff67b38d98 (patch) | |
tree | 4b30e9f75998b4d12b701a5d58c7ac5beda80ce8 /Misc/NEWS | |
parent | 6c52c5755fb63e50364f66fd98b8096c236ae633 (diff) | |
parent | 1f9a8354002dbb29f38bfbd4273ce62e40ac80ba (diff) | |
download | cpython-b69ef16fe63e6de91c5d659bd83d9eff67b38d98.zip cpython-b69ef16fe63e6de91c5d659bd83d9eff67b38d98.tar.gz cpython-b69ef16fe63e6de91c5d659bd83d9eff67b38d98.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/NEWS')
-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 #14223: curses.addch() is no more limited to the range 0-255 when the Python curses is not linked to libncursesw. It was a regression introduced in Python 3.3a1. |