Searched refs:attrobj (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Objects/ |
D | typeobject.c | 1215 lookup_maybe(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_maybe() argument 1219 if (*attrobj == NULL) { in lookup_maybe() 1220 *attrobj = PyString_InternFromString(attrstr); in lookup_maybe() 1221 if (*attrobj == NULL) in lookup_maybe() 1224 res = _PyType_Lookup(Py_TYPE(self), *attrobj); in lookup_maybe() 1236 lookup_method(PyObject *self, char *attrstr, PyObject **attrobj) in lookup_method() argument 1238 PyObject *res = lookup_maybe(self, attrstr, attrobj); in lookup_method() 1240 PyErr_SetObject(PyExc_AttributeError, *attrobj); in lookup_method() 1245 _PyObject_LookupSpecial(PyObject *self, char *attrstr, PyObject **attrobj) in _PyObject_LookupSpecial() argument 1248 return lookup_maybe(self, attrstr, attrobj); in _PyObject_LookupSpecial()
|