Searched defs:initstr (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
H A Dclassobject.c554 static PyObject *initstr; local
556 if (initstr == NULL) {
557 initstr = PyString_InternFromString("__init__");
558 if (initstr == NULL)
564 init = instance_getattr2(inst, initstr);
/external/python/cpython3/Python/
H A Dimport.c32 static PyObject *initstr = NULL; variable
47 initstr = PyUnicode_InternFromString("__init__");
48 if (initstr == NULL)

Completed in 124 milliseconds