Home
last modified time | relevance | path

Searched refs:PyMethodObject (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Objects/
Dclassobject.c21 return ((PyMethodObject *)im)->im_func; in PyMethod_Function()
31 return ((PyMethodObject *)im)->im_self; in PyMethod_Self()
105 PyMethodObject *im = PyObject_GC_New(PyMethodObject, &PyMethod_Type); in PyMethod_New()
120 method_reduce(PyMethodObject *im, PyObject *Py_UNUSED(ignored)) in method_reduce()
144 #define MO_OFF(x) offsetof(PyMethodObject, x)
160 method_get_doc(PyMethodObject *im, void *context) in method_get_doc()
179 PyMethodObject *im = (PyMethodObject *)obj; in method_getattro()
235 method_dealloc(PyMethodObject *im) in method_dealloc()
248 PyMethodObject *a, *b; in method_richcompare()
258 a = (PyMethodObject *)self; in method_richcompare()
[all …]
/third_party/python/Include/
Dclassobject.h18 } PyMethodObject; typedef
32 (((PyMethodObject *)meth) -> im_func)
34 (((PyMethodObject *)meth) -> im_self)
/third_party/python/Misc/
DHISTORY6788 - Issue #15404: Refleak in PyMethodObject repr.