summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorpkerling <pkerling@casix.org>2018-06-01 09:47:18 (GMT)
committerAntoine Pitrou <pitrou@free.fr>2018-06-01 09:47:18 (GMT)
commite905c84494526363086f66a979e317e155bf9536 (patch)
tree93699c2a9893978226ffa0ccf63a2954a043b40a /Misc/NEWS.d
parent23cee80cfade1a9019c52b3a17d8e5c1b5db17e2 (diff)
downloadcpython-e905c84494526363086f66a979e317e155bf9536.zip
cpython-e905c84494526363086f66a979e317e155bf9536.tar.gz
cpython-e905c84494526363086f66a979e317e155bf9536.tar.bz2
bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-05-28-12-28-53.bpo-30654.9fDJye.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-05-28-12-28-53.bpo-30654.9fDJye.rst b/Misc/NEWS.d/next/Core and Builtins/2018-05-28-12-28-53.bpo-30654.9fDJye.rst
new file mode 100644
index 0000000..01c27daa
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-05-28-12-28-53.bpo-30654.9fDJye.rst
@@ -0,0 +1,2 @@
+Fixed reset of the SIGINT handler to SIG_DFL on interpreter shutdown even
+when there was a custom handler set previously. Patch by Philipp Kerling.