]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347) (GH-23349)
authorVictor Stinner <vstinner@python.org>
Tue, 17 Nov 2020 21:23:18 +0000 (22:23 +0100)
committerGitHub <noreply@github.com>
Tue, 17 Nov 2020 21:23:18 +0000 (22:23 +0100)
commita702bd4b921167e73f8fc987aa64ada571fdc3f8
tree07dd56d507c200b11eb55a1baf03459d7eb317b1
parent545dcb178e8e56678f5f630799082d7ac0c7c31d
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)
Include/internal/pycore_pylifecycle.h
Misc/NEWS.d/next/Core and Builtins/2020-11-17-16-25-50.bpo-41686.hX77kL.rst [new file with mode: 0644]
Modules/signalmodule.c
Python/pylifecycle.c