diff options
author | Victor Stinner <vstinner@python.org> | 2023-11-01 03:24:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 03:24:33 (GMT) |
commit | ef83b3fc00716e16c54c7030326809c374c33161 (patch) | |
tree | c10f22c4e2bf540c5b74cf0279e6a6c0666a5d4e /PC/winsound.c | |
parent | 102685c4c8481ec5d9c132fcf06b46057e815969 (diff) | |
download | cpython-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 'PC/winsound.c')
-rw-r--r-- | PC/winsound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index 36e4d07..d1ff991 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -36,8 +36,8 @@ */ #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> |