aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Modules/_uuidmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-11-01 04:24:33 +0100
committerGitHub <noreply@github.com>2023-11-01 04:24:33 +0100
commitef83b3fc00716e16c54c7030326809c374c33161 (patch)
treec10f22c4e2bf540c5b74cf0279e6a6c0666a5d4e /Modules/_uuidmodule.c
parent102685c4c8481ec5d9c132fcf06b46057e815969 (diff)
downloadcpython-ef83b3fc00716e16c54c7030326809c374c33161.tar.gz
cpython-ef83b3fc00716e16c54c7030326809c374c33161.zip
gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)
Diffstat (limited to 'Modules/_uuidmodule.c')
-rw-r--r--Modules/_uuidmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_uuidmodule.c b/Modules/_uuidmodule.c
index 8bda1d60247..1d716051df4 100644
--- a/Modules/_uuidmodule.c
+++ b/Modules/_uuidmodule.c
@@ -8,8 +8,8 @@
#endif
#ifndef Py_NOGIL
-// Need limited C API version 3.13 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
-#define Py_LIMITED_API 0x030d0000
+// Need limited C API version 3.12 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
+#define Py_LIMITED_API 0x030c0000
#endif
#include "Python.h"