Home
last modified time | relevance | path

Searched refs:PyMethod_Check (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Objects/
Dclassobject.c17 if (!PyMethod_Check(im)) { in PyMethod_Function()
27 if (!PyMethod_Check(im)) { in PyMethod_Self()
253 !PyMethod_Check(self) || in method_richcompare()
254 !PyMethod_Check(other)) in method_richcompare()
/third_party/python/Include/
Dclassobject.h22 #define PyMethod_Check(op) Py_IS_TYPE(op, &PyMethod_Type) macro
/third_party/python/Doc/c-api/
Dmethod.rst65 .. c:function:: int PyMethod_Check(PyObject *o)
/third_party/python/Doc/data/
Drefcounts.dat1308 PyMethod_Check:int:::
1309 PyMethod_Check:PyObject*:o:0:
/third_party/python/Python/
Dceval.c5758 if (PyMethod_Check(func)) in PyEval_GetFuncName()
5771 if (PyMethod_Check(func)) in PyEval_GetFuncDesc()
/third_party/python/Modules/
D_pickle.c388 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) == self) { in init_method_ref()