[Python-checkins] bpo-41713: Remove PyOS_InitInterrupts() from python3dll.c (GH-24257)

vstinner webhook-mailer at python.org
Tue Jan 19 12:27:27 EST 2021


https://github.com/python/cpython/commit/e8e66eab941b983b6e85cd0d57cd45838880c568
commit: e8e66eab941b983b6e85cd0d57cd45838880c568
branch: master
author: Victor Stinner <vstinner at python.org>
committer: vstinner <vstinner at python.org>
date: 2021-01-19T18:27:01+01:00
summary:

bpo-41713: Remove PyOS_InitInterrupts() from python3dll.c (GH-24257)

files:
M PC/python3dll.c

diff --git a/PC/python3dll.c b/PC/python3dll.c
index 683bba3a9364d..542853abc894d 100644
--- a/PC/python3dll.c
+++ b/PC/python3dll.c
@@ -459,7 +459,6 @@ EXPORT_FUNC(PyOS_CheckStack)
 EXPORT_FUNC(PyOS_double_to_string)
 EXPORT_FUNC(PyOS_FSPath)
 EXPORT_FUNC(PyOS_getsig)
-EXPORT_FUNC(PyOS_InitInterrupts)
 EXPORT_FUNC(PyOS_InterruptOccurred)
 EXPORT_FUNC(PyOS_mystricmp)
 EXPORT_FUNC(PyOS_mystrnicmp)



More information about the Python-checkins mailing list