Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dclassobject.c1032 static PyObject *getitemstr, *setitemstr, *delitemstr, *lenstr; variable
1091 if (getitemstr == NULL) { in instance_subscript()
1092 getitemstr = PyString_InternFromString("__getitem__"); in instance_subscript()
1093 if (getitemstr == NULL) in instance_subscript()
1096 func = instance_getattr(inst, getitemstr); in instance_subscript()
1163 if (getitemstr == NULL) { in instance_item()
1164 getitemstr = PyString_InternFromString("__getitem__"); in instance_item()
1165 if (getitemstr == NULL) in instance_item()
1168 func = instance_getattr(inst, getitemstr); in instance_item()
1194 if (getitemstr == NULL) { in instance_slice()
[all …]