diff options
author | Victor Stinner <vstinner@python.org> | 2023-11-01 04:24:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 04:24:33 +0100 |
commit | ef83b3fc00716e16c54c7030326809c374c33161 (patch) | |
tree | c10f22c4e2bf540c5b74cf0279e6a6c0666a5d4e /Modules/_uuidmodule.c | |
parent | 102685c4c8481ec5d9c132fcf06b46057e815969 (diff) | |
download | cpython-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.c | 4 |
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" |