Lines Matching defs:litem
32 PyObject *litem;
50 litem = PySequence_GetItem(list, mid);
51 if (litem == NULL)
54 PyObject *newitem = PyObject_CallOneArg(key, litem);
56 Py_DECREF(litem);
59 Py_SETREF(litem, newitem);
61 res = PyObject_RichCompareBool(item, litem, Py_LT);
62 Py_DECREF(litem);
158 PyObject *litem;
176 litem = PySequence_GetItem(list, mid);
177 if (litem == NULL)
180 PyObject *newitem = PyObject_CallOneArg(key, litem);
182 Py_DECREF(litem);
185 Py_SETREF(litem, newitem);
187 res = PyObject_RichCompareBool(litem, item, Py_LT);
188 Py_DECREF(litem);