gh-111178: Fix function signatures in moduleobject.c (#124900)

This commit is contained in:
Victor Stinner 2024-10-02 16:31:04 +02:00 committed by GitHub
parent 9132148edf
commit 7bd9dbf8e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 45 additions and 20 deletions

View file

@ -46,7 +46,7 @@ static inline PyObject* _PyModule_GetDict(PyObject *mod) {
}
PyObject* _Py_module_getattro_impl(PyModuleObject *m, PyObject *name, int suppress);
PyObject* _Py_module_getattro(PyModuleObject *m, PyObject *name);
PyObject* _Py_module_getattro(PyObject *m, PyObject *name);
#ifdef __cplusplus
}