Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dobject.c1865 PyObject *itsclass = NULL; in _generic_dir() local
1895 itsclass = PyObject_GetAttrString(obj, "__class__"); in _generic_dir()
1896 if (itsclass == NULL) in _generic_dir()
1901 if (merge_class_dict(dict, itsclass) != 0) in _generic_dir()
1908 Py_XDECREF(itsclass); in _generic_dir()
/external/python/cpython3/Objects/
Dtypeobject.c4674 PyObject *itsclass = NULL; in object___dir___impl() local
4697 itsclass = _PyObject_GetAttrId(self, &PyId___class__); in object___dir___impl()
4698 if (itsclass == NULL) in object___dir___impl()
4702 else if (merge_class_dict(dict, itsclass) != 0) in object___dir___impl()
4708 Py_XDECREF(itsclass); in object___dir___impl()