Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dclassobject.c901 static PyObject *reprstr; in instance_repr() local
903 if (reprstr == NULL) { in instance_repr()
904 reprstr = PyString_InternFromString("__repr__"); in instance_repr()
905 if (reprstr == NULL) in instance_repr()
908 func = instance_getattr(inst, reprstr); in instance_repr()