Home
last modified time | relevance | path

Searched refs:PyInstanceMethodObject (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dclassobject.c405 PyInstanceMethodObject *method; in PyInstanceMethod_New()
406 method = PyObject_GC_New(PyInstanceMethodObject, in PyInstanceMethod_New()
425 #define IMO_OFF(x) offsetof(PyInstanceMethodObject, x)
508 PyInstanceMethodObject *a, *b; in instancemethod_richcompare()
518 a = (PyInstanceMethodObject *)self; in instancemethod_richcompare()
519 b = (PyInstanceMethodObject *)other; in instancemethod_richcompare()
600 sizeof(PyInstanceMethodObject), /* tp_basicsize */
/external/python/cpython3/Include/
Dclassobject.h40 } PyInstanceMethodObject; typedef
52 (((PyInstanceMethodObject *)meth) -> func)