diff options
author | Victor Stinner <vstinner@python.org> | 2021-01-19 17:27:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 17:27:01 (GMT) |
commit | e8e66eab941b983b6e85cd0d57cd45838880c568 (patch) | |
tree | a437d53532eb1cb08952a5a6c326ffd7e58305ed | |
parent | e485be5b6bd5fde97d78f09e2e4cca7f363763c3 (diff) | |
download | cpython-e8e66eab941b983b6e85cd0d57cd45838880c568.zip cpython-e8e66eab941b983b6e85cd0d57cd45838880c568.tar.gz cpython-e8e66eab941b983b6e85cd0d57cd45838880c568.tar.bz2 |
bpo-41713: Remove PyOS_InitInterrupts() from python3dll.c (GH-24257)
-rw-r--r-- | PC/python3dll.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/PC/python3dll.c b/PC/python3dll.c index 683bba3..542853a 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) |