From 6395844e6adebc12c4eba1fb75c5e7c9c8b89f85 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Sat, 20 Oct 2018 05:43:33 +0500 Subject: [PATCH] bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050) Simplify the pickling of set and dictionary objects iterators by consuming the iterator into a list with PySequence_List. --- Objects/dictobject.c | 38 ++++---------------------------------- Objects/setobject.c | 28 +++------------------------- 2 files changed, 7 insertions(+), 59 deletions(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index fec69678c50..370895d6bcc 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -3663,44 +3663,14 @@ PyTypeObject PyDictIterItem_Type = { static PyObject * dictiter_reduce(dictiterobject *di, PyObject *Py_UNUSED(ignored)) { - PyObject *list; - dictiterobject tmp; - - list = PyList_New(0); - if (!list) - return NULL; - - /* copy the itertor state */ - tmp = *di; + /* copy the iterator state */ + dictiterobject tmp = *di; Py_XINCREF(tmp.di_dict); /* iterate the temporary into a list */ - for(;;) { - PyObject *element = 0; - if (Py_TYPE(di) == &PyDictIterItem_Type) - element = dictiter_iternextitem(&tmp); - else if (Py_TYPE(di) == &PyDictIterKey_Type) - element = dictiter_iternextkey(&tmp); - else if (Py_TYPE(di) == &PyDictIterValue_Type) - element = dictiter_iternextvalue(&tmp); - else - Py_UNREACHABLE(); - if (element) { - if (PyList_Append(list, element)) { - Py_DECREF(element); - Py_DECREF(list); - Py_XDECREF(tmp.di_dict); - return NULL; - } - Py_DECREF(element); - } else - break; - } + PyObject *list = PySequence_List((PyObject*)&tmp); Py_XDECREF(tmp.di_dict); - /* check for error */ - if (tmp.di_dict != NULL) { - /* we have an error */ - Py_DECREF(list); + if (list == NULL) { return NULL; } return Py_BuildValue("N(N)", _PyObject_GetBuiltin("iter"), list); diff --git a/Objects/setobject.c b/Objects/setobject.c index e7a528888ef..aa1f4eedbfd 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -843,36 +843,14 @@ static PyObject *setiter_iternext(setiterobject *si); static PyObject * setiter_reduce(setiterobject *si, PyObject *Py_UNUSED(ignored)) { - PyObject *list; - setiterobject tmp; - - list = PyList_New(0); - if (!list) - return NULL; - /* copy the iterator state */ - tmp = *si; + setiterobject tmp = *si; Py_XINCREF(tmp.si_set); /* iterate the temporary into a list */ - for(;;) { - PyObject *element = setiter_iternext(&tmp); - if (element) { - if (PyList_Append(list, element)) { - Py_DECREF(element); - Py_DECREF(list); - Py_XDECREF(tmp.si_set); - return NULL; - } - Py_DECREF(element); - } else - break; - } + PyObject *list = PySequence_List((PyObject*)&tmp); Py_XDECREF(tmp.si_set); - /* check for error */ - if (tmp.si_set != NULL) { - /* we have an error */ - Py_DECREF(list); + if (list == NULL) { return NULL; } return Py_BuildValue("N(N)", _PyObject_GetBuiltin("iter"), list);