summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-05-23 21:44:37 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-05-23 21:44:37 (GMT)
commit11d7b1423fc44d764eba7065ea5eba58ed748b21 (patch)
tree5bd16122c1460cb69ccb0e572ef819f55ca72106 /Include
parent1a90b17bce4f4d57eba3c467ef3457307f88a505 (diff)
downloadcpython-11d7b1423fc44d764eba7065ea5eba58ed748b21.zip
cpython-11d7b1423fc44d764eba7065ea5eba58ed748b21.tar.gz
cpython-11d7b1423fc44d764eba7065ea5eba58ed748b21.tar.bz2
Issue #24268: Adds PyModuleDef_Init and PyModuleDef_Type to python3.def (stable ABI)
Diffstat (limited to 'Include')
-rw-r--r--Include/moduleobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h
index e68d144..dbbf581 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -31,7 +31,7 @@ PyAPI_FUNC(struct PyModuleDef*) PyModule_GetDef(PyObject*);
PyAPI_FUNC(void*) PyModule_GetState(PyObject*);
PyAPI_FUNC(PyObject *) PyModuleDef_Init(struct PyModuleDef*);
-PyTypeObject PyModuleDef_Type;
+PyAPI_DATA(PyTypeObject) PyModuleDef_Type;
typedef struct PyModuleDef_Base {
PyObject_HEAD