Lines Matching defs:item
324 PyObject **item = v->ob_item;
328 Py_uhash_t lane = PyObject_Hash(item[i]);
387 PyObject *item = src[i];
388 Py_INCREF(item);
389 dst[i] = item;
410 PyObject *item = src[i];
411 dst[i] = item;
668 /* We have an item that differs -- shortcuts for EQ/NE */
676 /* Compare the final item again using the proper operator */
736 PyObject *tmp, *newobj, *item;
754 item = PyTuple_GET_ITEM(tmp, i);
755 Py_INCREF(item);
756 PyTuple_SET_ITEM(newobj, i, item);
779 tuplesubscript(PyTupleObject* self, PyObject* item)
781 if (_PyIndex_Check(item)) {
782 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
789 else if (PySlice_Check(item)) {
795 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
830 Py_TYPE(item)->tp_name);
1041 PyObject *item;
1050 item = PyTuple_GET_ITEM(seq, it->it_index);
1052 Py_INCREF(item);
1053 return item;
1190 /* op is the head of a linked list, with the first item
1228 /* op is the head of a linked list, with the first item