diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-05-04 15:16:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 15:16:48 (GMT) |
commit | 7299088ccf5f72b8494063814b58a180b4250aa7 (patch) | |
tree | 77867e53f837da0632bbd2aada40d1655c161346 /Misc/NEWS | |
parent | 8a1c71053139f20348ea487c0c464694ed3c88c5 (diff) | |
download | cpython-7299088ccf5f72b8494063814b58a180b4250aa7.zip cpython-7299088ccf5f72b8494063814b58a180b4250aa7.tar.gz cpython-7299088ccf5f72b8494063814b58a180b4250aa7.tar.bz2 |
[3.5] bpo-30185: avoid KeyboardInterrupt tracebacks in forkserver (GH-1319) (#1455)
* bpo-30185: avoid KeyboardInterrupt tracebacks in forkserver
* Tweak comment.
(cherry picked from commit 6dd4d734ed207ba16b017e38f8909de7ef187e29)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -49,6 +49,9 @@ Extension Modules Library ------- +- bpo-30185: Avoid KeyboardInterrupt tracebacks in forkserver helper process + when Ctrl-C is received. + - bpo-28556: Various updates to typing module: add typing.NoReturn type, use WrapperDescriptorType, minor bug-fixes. Original PRs by Jim Fasarakis-Hilliard and Ivan Levkivskyi. |