summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-05-04 15:16:48 (GMT)
committerGitHub <noreply@github.com>2017-05-04 15:16:48 (GMT)
commit7299088ccf5f72b8494063814b58a180b4250aa7 (patch)
tree77867e53f837da0632bbd2aada40d1655c161346 /Misc/NEWS
parent8a1c71053139f20348ea487c0c464694ed3c88c5 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 93bd30f..1852d68 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.