Searched refs:_PyObject_GetMethod (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Objects/ |
D | call.c | 811 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()
|
D | object.c | 1085 _PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) in _PyObject_GetMethod() function
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 330 PyAPI_FUNC(int) _PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method);
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0b1.rst | 2008 ``_PyObject_CallMethodIdObjArgs`` to use ``_PyObject_GetMethod`` to avoid
|
/external/python/cpython3/Python/ |
D | ceval.c | 3434 int meth_found = _PyObject_GetMethod(obj, name, &meth); in _PyEval_EvalFrameDefault()
|