summaryrefslogtreecommitdiffstats
path: root/Modules/_stat.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-11-01 03:24:33 (GMT)
committerGitHub <noreply@github.com>2023-11-01 03:24:33 (GMT)
commitef83b3fc00716e16c54c7030326809c374c33161 (patch)
treec10f22c4e2bf540c5b74cf0279e6a6c0666a5d4e /Modules/_stat.c
parent102685c4c8481ec5d9c132fcf06b46057e815969 (diff)
downloadcpython-ef83b3fc00716e16c54c7030326809c374c33161.zip
cpython-ef83b3fc00716e16c54c7030326809c374c33161.tar.gz
cpython-ef83b3fc00716e16c54c7030326809c374c33161.tar.bz2
gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)
Diffstat (limited to 'Modules/_stat.c')
-rw-r--r--Modules/_stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_stat.c b/Modules/_stat.c
index d003560..9e278d6 100644
--- a/Modules/_stat.c
+++ b/Modules/_stat.c
@@ -15,8 +15,8 @@
#include "pyconfig.h" // Py_NOGIL
#endif
-// Need limited C API version 3.13 for PyModule_Add() on Windows
#ifndef Py_NOGIL
+// Need limited C API version 3.13 for PyModule_Add() on Windows
#define Py_LIMITED_API 0x030d0000
#endif