diff options
author | Victor Stinner <vstinner@python.org> | 2021-04-27 23:50:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 23:50:04 (GMT) |
commit | a09766deab5aff549f40f27080895e148af922ed (patch) | |
tree | 54a43001554a14927abe6347b394c470796db7e6 /Misc | |
parent | 6bd9288b805c765ec2433f66aa4d82e05767325f (diff) | |
download | cpython-a09766deab5aff549f40f27080895e148af922ed.zip cpython-a09766deab5aff549f40f27080895e148af922ed.tar.gz cpython-a09766deab5aff549f40f27080895e148af922ed.tar.bz2 |
bpo-43963: Fix import _signal in subinterpreters (GH-25674)
Importing the _signal module in a subinterpreter has no longer side
effects.
signal_module_exec() no longer modifies Handlers and no longer attempts
to set SIGINT signal handler in subinterpreters.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-04-28-01-23-38.bpo-43963.u5Y6bS.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-04-28-01-23-38.bpo-43963.u5Y6bS.rst b/Misc/NEWS.d/next/Core and Builtins/2021-04-28-01-23-38.bpo-43963.u5Y6bS.rst new file mode 100644 index 0000000..1f89043 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-04-28-01-23-38.bpo-43963.u5Y6bS.rst @@ -0,0 +1,2 @@ +Importing the :mod:`_signal` module in a subinterpreter has no longer side +effects. |