summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-17 10:27:16 (GMT)
committerGitHub <noreply@github.com>2023-10-17 10:27:16 (GMT)
commitdb15fc23c629fb7e0dfd4858c064fcd4c02582b3 (patch)
tree82dc4e15fb86430d4d9300d82241dc0e9f750469 /Include
parent9a9fba825f8aaee4ea9b3429875c6c6324d0dee0 (diff)
downloadcpython-db15fc23c629fb7e0dfd4858c064fcd4c02582b3.zip
cpython-db15fc23c629fb7e0dfd4858c064fcd4c02582b3.tar.gz
cpython-db15fc23c629fb7e0dfd4858c064fcd4c02582b3.tar.bz2
gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED new in 3.13. (#110969)
* Only add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED to limited C API version 3.13. * errno, xxlimited and _ctypes_test extensions now need the limited C API version 3.13 to get Py_MOD_PER_INTERPRETER_GIL_SUPPORTED. They now include standard header files explicitly: <errno.h>, <string.h> and <stdio.h>. * xxlimited_35: Remove Py_mod_multiple_interpreters slot, incompatible with limited C API version 3.5.
Diffstat (limited to 'Include')
-rw-r--r--Include/moduleobject.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h
index ea08145..2f7dc25 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -79,12 +79,14 @@ struct PyModuleDef_Slot {
#define _Py_mod_LAST_SLOT 3
#endif
+#endif /* New in 3.5 */
+
/* for Py_mod_multiple_interpreters: */
+#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
#define Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED ((void *)0)
#define Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED ((void *)1)
#define Py_MOD_PER_INTERPRETER_GIL_SUPPORTED ((void *)2)
-
-#endif /* New in 3.5 */
+#endif
struct PyModuleDef {
PyModuleDef_Base m_base;