diff options
author | Victor Stinner <vstinner@python.org> | 2020-11-17 21:23:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 21:23:18 (GMT) |
commit | a702bd4b921167e73f8fc987aa64ada571fdc3f8 (patch) | |
tree | 07dd56d507c200b11eb55a1baf03459d7eb317b1 /Misc | |
parent | 545dcb178e8e56678f5f630799082d7ac0c7c31d (diff) | |
download | cpython-a702bd4b921167e73f8fc987aa64ada571fdc3f8.zip cpython-a702bd4b921167e73f8fc987aa64ada571fdc3f8.tar.gz cpython-a702bd4b921167e73f8fc987aa64ada571fdc3f8.tar.bz2 |
bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347) (GH-23349)
bpo-41686, bpo-41713: On Windows, the SIGINT event,
_PyOS_SigintEvent(), is now created even if Python is configured to
not install signal handlers (PyConfig.install_signal_handlers=0 or
Py_InitializeEx(0)).
(cherry picked from commit 05a5d697f4f097f37c5c1e2ed0e2338a33c3fb6a)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-11-17-16-25-50.bpo-41686.hX77kL.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-11-17-16-25-50.bpo-41686.hX77kL.rst b/Misc/NEWS.d/next/Core and Builtins/2020-11-17-16-25-50.bpo-41686.hX77kL.rst new file mode 100644 index 0000000..0265d48 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-11-17-16-25-50.bpo-41686.hX77kL.rst @@ -0,0 +1,4 @@ +On Windows, the ``SIGINT`` event, ``_PyOS_SigintEvent()``, is now created +even if Python is configured to not install signal handlers (if +:c:member:`PyConfig.install_signal_handlers` equals to 0, or +``Py_InitializeEx(0)``). |