Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dclassobject.c1181 static PyObject *getslicestr; in instance_slice() local
1183 if (getslicestr == NULL) { in instance_slice()
1184 getslicestr = PyString_InternFromString("__getslice__"); in instance_slice()
1185 if (getslicestr == NULL) in instance_slice()
1188 func = instance_getattr(inst, getslicestr); in instance_slice()