Lines Matching refs:item
670 PyObject *item = PyLong_FromSsize_t(i);
671 if (item == NULL) {
677 if (PyDict_SetItem(dest, k, item) < 0) {
679 Py_DECREF(item);
683 Py_DECREF(item);
1350 PyObject *item = PyTuple_GET_ITEM(o, i);
1351 PyObject *u = merge_consts_recursive(c, item);
1365 if (v != item) {
1368 Py_DECREF(item);
1375 // *key* is tuple. And its first item is frozenset of
1391 PyObject *item;
1393 while (_PySet_NextEntry(o, &pos, &item, &hash)) {
1394 PyObject *k = merge_consts_recursive(c, item);
1838 "stack item", NULL);
5649 withitem_ty item = asdl_seq_GET(s->v.AsyncWith.items, pos);
5666 VISIT(c, expr, item->context_expr);
5681 if (item->optional_vars) {
5682 VISIT(c, expr, item->optional_vars);
5755 withitem_ty item = asdl_seq_GET(s->v.With.items, pos);
5767 VISIT(c, expr, item->context_expr);
5778 if (item->optional_vars) {
5779 VISIT(c, expr, item->optional_vars);
6444 // One less item to keep track of each time we loop through:
8661 // Okay, we've found an item that hasn't been visited. It forms a cycle
8662 // with other items; traversing the cycle and swapping each item with
8668 // Skip the actual swap if our item is zero, since swapping the top
8669 // item with itself is pointless: