From 11d7b1423fc44d764eba7065ea5eba58ed748b21 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Sat, 23 May 2015 14:44:37 -0700 Subject: Issue #24268: Adds PyModuleDef_Init and PyModuleDef_Type to python3.def (stable ABI) --- Include/moduleobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/moduleobject.h') diff --git a/Include/moduleobject.h b/Include/moduleobject.h index e68d144c78f..dbbf581f97a 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 -- cgit v1.2.3