Home
last modified time | relevance | path

Searched refs:_PyObject_GetMethod (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Objects/
Dcall.c754 int unbound = _PyObject_GetMethod(args[0], name, &callable); in PyObject_VectorcallMethod()
786 int is_method = _PyObject_GetMethod(obj, name, &callable); in PyObject_CallMethodObjArgs()
817 int is_method = _PyObject_GetMethod(obj, oname, &callable); in _PyObject_CallMethodIdObjArgs()
Dobject.c1125 _PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) in _PyObject_GetMethod() function
/third_party/python/Include/cpython/
Dobject.h330 PyAPI_FUNC(int) _PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method);
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst2008 ``_PyObject_CallMethodIdObjArgs`` to use ``_PyObject_GetMethod`` to avoid
/third_party/python/Python/
Dceval.c4128 int meth_found = _PyObject_GetMethod(obj, name, &meth); in _PyEval_EvalFrameDefault()