Home
last modified time | relevance | path

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

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