summaryrefslogtreecommitdiffstats
path: root/Modules/errnomodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/errnomodule.c')
-rw-r--r--Modules/errnomodule.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c
index e4fd3b4..5ac4d29 100644
--- a/Modules/errnomodule.c
+++ b/Modules/errnomodule.c
@@ -1,7 +1,13 @@
/* Errno module */
+#ifndef _MSC_VER
+#include "pyconfig.h" // Py_NOGIL
+#endif
+
+#ifndef Py_NOGIL
// Need limited C API version 3.13 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
#define Py_LIMITED_API 0x030d0000
+#endif
#include "Python.h"
#include <errno.h> // EPIPE