Lines Matching defs:firstitem
2881 PyObject *firstitem = NULL;
2917 firstitem = PyIter_Next(iter);
2918 if (firstitem == NULL) {
2933 if (save(self, firstitem, 0) < 0)
2937 Py_CLEAR(firstitem);
2947 if (save(self, firstitem, 0) < 0)
2949 Py_CLEAR(firstitem);
2977 Py_XDECREF(firstitem);
3122 PyObject *firstitem = NULL;
3160 firstitem = PyIter_Next(iter);
3161 if (firstitem == NULL) {
3168 if (!PyTuple_Check(firstitem) || PyTuple_Size(firstitem) != 2) {
3181 if (save(self, PyTuple_GET_ITEM(firstitem, 0), 0) < 0)
3183 if (save(self, PyTuple_GET_ITEM(firstitem, 1), 0) < 0)
3187 Py_CLEAR(firstitem);
3197 if (save(self, PyTuple_GET_ITEM(firstitem, 0), 0) < 0)
3199 if (save(self, PyTuple_GET_ITEM(firstitem, 1), 0) < 0)
3201 Py_CLEAR(firstitem);
3235 Py_XDECREF(firstitem);