Home
last modified time | relevance | path

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

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