Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dclassobject.h18 PyObject *cl_getattr; member
/external/python/cpython2/Objects/
Dclassobject.c128 op->cl_getattr = class_lookup(op, getattrstr, &dummy); in PyClass_New()
131 Py_XINCREF(op->cl_getattr); in PyClass_New()
197 Py_XDECREF(op->cl_getattr); in class_dealloc()
290 set_slot(&c->cl_getattr, class_lookup(c, getattrstr, &dummy)); in set_attr_slots()
361 set_slot(&op->cl_getattr, v); in class_setattr()
438 Py_VISIT(o->cl_getattr); in class_traverse()
775 if (res == NULL && (func = inst->in_class->cl_getattr) != NULL) { in instance_getattr()
2003 if (((PyInstanceObject *)v)->in_class->cl_getattr == NULL) in half_richcompare()
/external/python/cpython2/Modules/
Dclmodule.c639 cl_getattr(PyObject *self, char *name) in cl_getattr() function
656 (getattrfunc)cl_getattr, /*tp_getattr*/