Home
last modified time | relevance | path

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

/third_party/python/Include/
Dclassobject.h33 #define PyMethod_GET_SELF(meth) \ macro
/third_party/python/Objects/
Dclassobject.c42 PyObject *self = PyMethod_GET_SELF(method); in method_vectorcall()
122 PyObject *self = PyMethod_GET_SELF(im); in method_reduce()
/third_party/python/Doc/c-api/
Dmethod.rst93 .. c:function:: PyObject* PyMethod_GET_SELF(PyObject *meth)
/third_party/python/Doc/data/
Drefcounts.dat1317 PyMethod_GET_SELF:PyObject*::0:
1318 PyMethod_GET_SELF:PyObject*:im:0:
/third_party/python/Modules/
D_pickle.c388 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) == self) { in init_method_ref()