]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342)
authorVictor Stinner <vstinner@python.org>
Tue, 17 Nov 2020 15:22:23 +0000 (16:22 +0100)
committerGitHub <noreply@github.com>
Tue, 17 Nov 2020 15:22:23 +0000 (16:22 +0100)
commit296a796951032f678d063008f588ccc6958d0df1
tree91fa9ac02ef9786aeb741d13d07a0cd027d34d02
parent975022b77b0024ea1548f19d5f91aba5ba1eed59
bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342)

Remove the undocumented PyOS_InitInterrupts() C function.

* Rename PyOS_InitInterrupts() to _PySignal_Init(). It now installs
  other signal handlers, not only SIGINT.
* Rename PyOS_FiniInterrupts() to _PySignal_Fini()
Doc/whatsnew/3.10.rst
Include/internal/pycore_pylifecycle.h
Include/intrcheck.h
Misc/NEWS.d/next/C API/2020-11-17-15-39-10.bpo-41713.Rq99Vc.rst [new file with mode: 0644]
Modules/signalmodule.c
Python/pylifecycle.c