]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347)
authorVictor Stinner <vstinner@python.org>
Tue, 17 Nov 2020 17:58:12 +0000 (18:58 +0100)
committerGitHub <noreply@github.com>
Tue, 17 Nov 2020 17:58:12 +0000 (18:58 +0100)
commit05a5d697f4f097f37c5c1e2ed0e2338a33c3fb6a
tree21cc60d0f86bdb294f9872d800127fb08436d637
parentac472b316cbb22ab8b750a474e991b46d1e92e15
bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347)

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)).
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