Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dclassobject.c379 PyInstanceMethodObject *method; in PyInstanceMethod_New()
380 method = PyObject_GC_New(PyInstanceMethodObject, in PyInstanceMethod_New()
399 #define IMO_OFF(x) offsetof(PyInstanceMethodObject, x)
482 PyInstanceMethodObject *a, *b; in instancemethod_richcompare()
492 a = (PyInstanceMethodObject *)self; in instancemethod_richcompare()
493 b = (PyInstanceMethodObject *)other; in instancemethod_richcompare()
574 sizeof(PyInstanceMethodObject), /* tp_basicsize */
/external/python/cpython3/Include/
Dclassobject.h39 } PyInstanceMethodObject; typedef
51 (((PyInstanceMethodObject *)meth) -> func)