Searched refs:getitemstr (Results 1 – 1 of 1) sorted by relevance
1032 static PyObject *getitemstr, *setitemstr, *delitemstr, *lenstr; variable1091 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 …]