Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dcomplexobject.c290 static PyObject *complexstr; in try_complex_special_method() local
292 if (complexstr == NULL) { in try_complex_special_method()
293 complexstr = PyString_InternFromString("__complex__"); in try_complex_special_method()
294 if (complexstr == NULL) in try_complex_special_method()
298 f = PyObject_GetAttr(op, complexstr); in try_complex_special_method()
307 f = _PyObject_LookupSpecial(op, "__complex__", &complexstr); in try_complex_special_method()