Lines Matching defs:item
1054 PyObject *item = PyList_GET_ITEM(self->fut_callbacks, i);
1055 Py_INCREF(item);
1056 ret = PyObject_RichCompareBool(PyTuple_GET_ITEM(item, 0), fn, Py_EQ);
1059 PyList_SET_ITEM(newlist, j, item);
1063 ret = PyList_Append(newlist, item);
1065 Py_DECREF(item);
1941 PyObject *item;
1947 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash);
1948 if (item != NULL) {
1949 Py_INCREF(item);
1954 task, item, NULL);
1955 Py_DECREF(item);
1969 PyObject *item;
1975 item = _PyDict_GetItem_KnownHash(current_tasks, loop, hash);
1976 if (item != task) {
1977 if (item == NULL) {
1979 item = Py_None;
1984 task, item, NULL);