mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
gh-111178: Fix function signatures in moduleobject.c (#124900)
This commit is contained in:
parent
9132148edf
commit
7bd9dbf8e1
2 changed files with 45 additions and 20 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue