gc.collect()
self.assertTrue(gc.is_tracked(next(it)))
+ @support.cpython_only
+ def test_pairwise_result_gc(self):
+ # Ditto for pairwise.
+ it = pairwise([None, None])
+ gc.collect()
+ self.assertTrue(gc.is_tracked(next(it)))
+
@support.cpython_only
def test_immutable_types(self):
from itertools import _grouper, _tee, _tee_dataobject
PyObject_HEAD
PyObject *it;
PyObject *old;
+ PyObject *result;
} pairwiseobject;
/*[clinic input]
}
po->it = it;
po->old = NULL;
+ po->result = PyTuple_Pack(2, Py_None, Py_None);
+ if (po->result == NULL) {
+ Py_DECREF(po);
+ return NULL;
+ }
return (PyObject *)po;
}
PyObject_GC_UnTrack(po);
Py_XDECREF(po->it);
Py_XDECREF(po->old);
+ Py_XDECREF(po->result);
tp->tp_free(po);
Py_DECREF(tp);
}
Py_VISIT(Py_TYPE(po));
Py_VISIT(po->it);
Py_VISIT(po->old);
+ Py_VISIT(po->result);
return 0;
}
Py_DECREF(old);
return NULL;
}
- /* Future optimization: Reuse the result tuple as we do in enumerate() */
- result = PyTuple_Pack(2, old, new);
+
+ result = po->result;
+ if (Py_REFCNT(result) == 1) {
+ Py_INCREF(result);
+ PyObject *last_old = PyTuple_GET_ITEM(result, 0);
+ PyObject *last_new = PyTuple_GET_ITEM(result, 1);
+ PyTuple_SET_ITEM(result, 0, Py_NewRef(old));
+ PyTuple_SET_ITEM(result, 1, Py_NewRef(new));
+ Py_DECREF(last_old);
+ Py_DECREF(last_new);
+ // bpo-42536: The GC may have untracked this result tuple. Since we're
+ // recycling it, make sure it's tracked again:
+ if (!_PyObject_GC_IS_TRACKED(result)) {
+ _PyObject_GC_TRACK(result);
+ }
+ }
+ else {
+ result = PyTuple_New(2);
+ if (result != NULL) {
+ PyTuple_SET_ITEM(result, 0, Py_NewRef(old));
+ PyTuple_SET_ITEM(result, 1, Py_NewRef(new));
+ }
+ }
+
Py_XSETREF(po->old, new);
Py_DECREF(old);
return result;