summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGareth Rees <grees@undo.io>2021-12-13 17:22:43 (GMT)
committerGitHub <noreply@github.com>2021-12-13 17:22:43 (GMT)
commita62be77266b1beadd42d4952186332bc0847b7d6 (patch)
treeabd18e3df50cc28a966f85a36b8e475051b203ba /Modules
parent191c431de7d9b23484dd16f67e62c6e85a1fac7f (diff)
downloadcpython-a62be77266b1beadd42d4952186332bc0847b7d6.zip
cpython-a62be77266b1beadd42d4952186332bc0847b7d6.tar.gz
cpython-a62be77266b1beadd42d4952186332bc0847b7d6.tar.bz2
bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/signalmodule.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index 2013f16..9316a9e 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -1554,6 +1554,9 @@ signal_add_constants(PyObject *module)
#ifdef SIGINFO
ADD_INT_MACRO(SIGINFO);
#endif
+#ifdef SIGSTKFLT
+ ADD_INT_MACRO(SIGSTKFLT);
+#endif
// ITIMER_xxx constants
#ifdef ITIMER_REAL