From: Victor Stinner Date: Tue, 19 Jan 2021 17:27:01 +0000 (+0100) Subject: bpo-41713: Remove PyOS_InitInterrupts() from python3dll.c (GH-24257) X-Git-Tag: v3.10.0a5~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8e66eab941b983b6e85cd0d57cd45838880c568;p=thirdparty%2FPython%2Fcpython.git bpo-41713: Remove PyOS_InitInterrupts() from python3dll.c (GH-24257) --- diff --git a/PC/python3dll.c b/PC/python3dll.c index 683bba3a9364..542853abc894 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)