Searched refs:getitemstr (Results 1 – 1 of 1) sorted by relevance
1033 static PyObject *getitemstr, *setitemstr, *delitemstr, *lenstr; variable1092 if (getitemstr == NULL) { in instance_subscript()1093 getitemstr = PyString_InternFromString("__getitem__"); in instance_subscript()1094 if (getitemstr == NULL) in instance_subscript()1097 func = instance_getattr(inst, getitemstr); in instance_subscript()1164 if (getitemstr == NULL) { in instance_item()1165 getitemstr = PyString_InternFromString("__getitem__"); in instance_item()1166 if (getitemstr == NULL) in instance_item()1169 func = instance_getattr(inst, getitemstr); in instance_item()1195 if (getitemstr == NULL) { in instance_slice()[all …]