mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
add _PyObject_LookupSpecial to handle fetching special method lookup
This commit is contained in:
parent
d846f1d4c2
commit
399e4c4f8f
4 changed files with 64 additions and 12 deletions
|
@ -451,6 +451,7 @@ PyAPI_FUNC(PyObject *) PyType_GenericAlloc(PyTypeObject *, Py_ssize_t);
|
|||
PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *,
|
||||
PyObject *, PyObject *);
|
||||
PyAPI_FUNC(PyObject *) _PyType_Lookup(PyTypeObject *, PyObject *);
|
||||
PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, char *, PyObject **);
|
||||
PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
|
||||
PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue