]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)
authorAntoine Pitrou <antoine@python.org>
Thu, 11 Mar 2021 22:35:45 +0000 (23:35 +0100)
committerGitHub <noreply@github.com>
Thu, 11 Mar 2021 22:35:45 +0000 (23:35 +0100)
commitba251c2ae6654bfc8abd9d886b219698ad34ac3c
treee536a5ba9f661c806ffaa507e2ca4cf1be551b5a
parentb4fc44bb2d209182390b4f9fdf074a46b0165a2f
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)

Also introduce a new C API ``PyErr_SetInterruptEx(int signum)``.
Doc/c-api/exceptions.rst
Doc/data/stable_abi.dat
Doc/library/_thread.rst
Doc/whatsnew/3.10.rst
Include/internal/pycore_pylifecycle.h
Include/pyerrors.h
Lib/test/test_threading.py
Misc/NEWS.d/next/Library/2021-03-04-21-51-20.bpo-43356.X7IGBM.rst [new file with mode: 0644]
Modules/_threadmodule.c
Modules/signalmodule.c
PC/python3dll.c