mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
gh-111178: Make slot functions in typeobject.c have compatible types (GH-112752)
This commit is contained in:
parent
57b7e52790
commit
a545a86ec6
3 changed files with 36 additions and 21 deletions
|
@ -133,7 +133,7 @@ _PyType_IsReady(PyTypeObject *type)
|
|||
|
||||
extern PyObject* _Py_type_getattro_impl(PyTypeObject *type, PyObject *name,
|
||||
int *suppress_missing_attribute);
|
||||
extern PyObject* _Py_type_getattro(PyTypeObject *type, PyObject *name);
|
||||
extern PyObject* _Py_type_getattro(PyObject *type, PyObject *name);
|
||||
|
||||
extern PyObject* _Py_BaseObject_RichCompare(PyObject* self, PyObject* other, int op);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue