summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2019-02-23 22:40:43 (GMT)
committerGitHub <noreply@github.com>2019-02-23 22:40:43 (GMT)
commit64d6cc826dacebc2493b1bb5e8cb97828eb76f81 (patch)
tree93185a0a288ead9ac51ccaa606cd2aae7a4e45ed /Misc
parent06babb24225d41a76e4aee975380294ca1ee1d7c (diff)
downloadcpython-64d6cc826dacebc2493b1bb5e8cb97828eb76f81.zip
cpython-64d6cc826dacebc2493b1bb5e8cb97828eb76f81.tar.gz
cpython-64d6cc826dacebc2493b1bb5e8cb97828eb76f81.tar.bz2
bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530)
Ensure that the main interpreter is active (in the main thread) for signal-handling operations. This is increasingly relevant as people use subinterpreters more. https://bugs.python.org/issue35724
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-01-11-14-46-08.bpo-35724.Wv79MG.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-01-11-14-46-08.bpo-35724.Wv79MG.rst b/Misc/NEWS.d/next/Core and Builtins/2019-01-11-14-46-08.bpo-35724.Wv79MG.rst
new file mode 100644
index 0000000..d2d74e5
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-01-11-14-46-08.bpo-35724.Wv79MG.rst
@@ -0,0 +1,2 @@
+Signal-handling is now guaranteed to happen relative to the main
+interpreter.