Lines Matching defs:item
585 /* Push one item onto the queue while holding the lock. */
601 /* Pop one item off the queue while holding the lock. */
714 /* pop one item off the queue while holding the lock */
3227 PyObject *item = POP();
3228 Py_DECREF(item);
3239 PyObject *item = POP();
3240 PyTuple_SET_ITEM(tup, oparg, item);
3251 PyObject *item = POP();
3252 PyList_SET_ITEM(list, oparg, item);
3308 PyObject *item = PEEK(i);
3310 err = PySet_Add(set, item);
3311 Py_DECREF(item);