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