diff options
author | Victor Stinner <vstinner@python.org> | 2022-03-03 22:06:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 22:06:55 (GMT) |
commit | 0b63215bb152c06404cecbd5303b1a50969a9f9f (patch) | |
tree | b9f9fede81b88f86dbc90fd22268c6a2b359e798 /Include | |
parent | 4173d677a1d7c72bb32d292fbff1b4cf073d615c (diff) | |
download | cpython-0b63215bb152c06404cecbd5303b1a50969a9f9f.zip cpython-0b63215bb152c06404cecbd5303b1a50969a9f9f.tar.gz cpython-0b63215bb152c06404cecbd5303b1a50969a9f9f.tar.bz2 |
bpo-45459: Fix PyModuleDef_Slot type in the limited C API (GH-31668)
Move the type definition to pytypedefs.h.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/moduleobject.h | 6 | ||||
-rw-r--r-- | Include/pytypedefs.h | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h index 2d41f76..8b62c45 100644 --- a/Include/moduleobject.h +++ b/Include/moduleobject.h @@ -55,14 +55,12 @@ typedef struct PyModuleDef_Base { NULL, /* m_copy */ \ } -struct PyModuleDef_Slot; - #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000 /* New in 3.5 */ -typedef struct PyModuleDef_Slot{ +struct PyModuleDef_Slot { int slot; void *value; -} PyModuleDef_Slot; +}; #define Py_mod_create 1 #define Py_mod_exec 2 diff --git a/Include/pytypedefs.h b/Include/pytypedefs.h index 5dd841e..e78ed56 100644 --- a/Include/pytypedefs.h +++ b/Include/pytypedefs.h @@ -10,6 +10,7 @@ extern "C" { #endif typedef struct PyModuleDef PyModuleDef; +typedef struct PyModuleDef_Slot PyModuleDef_Slot; typedef struct PyMethodDef PyMethodDef; typedef struct PyGetSetDef PyGetSetDef; typedef struct PyMemberDef PyMemberDef; |