summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-05-06 01:05:02 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-05-06 01:05:02 (GMT)
commit8572b4fedf7e6ee4cd350680d53cd0a21574b083 (patch)
treed8f3f982d9b35dffb659ec228ae53628bf85a56e /Python
parentef0c42d4e5d0d7493395b1e3c37fe53dc48a377f (diff)
downloadcpython-8572b4fedf7e6ee4cd350680d53cd0a21574b083.zip
cpython-8572b4fedf7e6ee4cd350680d53cd0a21574b083.tar.gz
cpython-8572b4fedf7e6ee4cd350680d53cd0a21574b083.tar.bz2
Generalize zip() to work with iterators.
NEEDS DOC CHANGES. More AttributeErrors transmuted into TypeErrors, in test_b2.py, and, again, this strikes me as a good thing. This checkin completes the iterator generalization work that obviously needed to be done. Can anyone think of others that should be changed?
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c62
1 files changed, 44 insertions, 18 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 4a51ccd..cc1bc95 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -2102,7 +2102,8 @@ builtin_zip(PyObject *self, PyObject *args)
{
PyObject *ret;
int itemsize = PySequence_Length(args);
- int i, j;
+ int i;
+ PyObject *itlist; /* tuple of iterators */
if (itemsize < 1) {
PyErr_SetString(PyExc_TypeError,
@@ -2112,35 +2113,60 @@ builtin_zip(PyObject *self, PyObject *args)
/* args must be a tuple */
assert(PyTuple_Check(args));
+ /* allocate result list */
if ((ret = PyList_New(0)) == NULL)
return NULL;
- for (i = 0;; i++) {
- PyObject *next = PyTuple_New(itemsize);
- if (!next) {
- Py_DECREF(ret);
- return NULL;
+ /* obtain iterators */
+ itlist = PyTuple_New(itemsize);
+ if (itlist == NULL)
+ goto Fail_ret;
+ for (i = 0; i < itemsize; ++i) {
+ PyObject *item = PyTuple_GET_ITEM(args, i);
+ PyObject *it = PyObject_GetIter(item);
+ if (it == NULL) {
+ if (PyErr_ExceptionMatches(PyExc_TypeError))
+ PyErr_Format(PyExc_TypeError,
+ "zip argument #%d must support iteration",
+ i+1);
+ goto Fail_ret_itlist;
}
- for (j = 0; j < itemsize; j++) {
- PyObject *seq = PyTuple_GET_ITEM(args, j);
- PyObject *item = PySequence_GetItem(seq, i);
+ PyTuple_SET_ITEM(itlist, i, it);
+ }
+ /* build result into ret list */
+ for (;;) {
+ int status;
+ PyObject *next = PyTuple_New(itemsize);
+ if (!next)
+ goto Fail_ret_itlist;
+
+ for (i = 0; i < itemsize; i++) {
+ PyObject *it = PyTuple_GET_ITEM(itlist, i);
+ PyObject *item = PyIter_Next(it);
if (!item) {
- if (PyErr_ExceptionMatches(PyExc_IndexError)) {
- PyErr_Clear();
- Py_DECREF(next);
- return ret;
+ if (PyErr_Occurred()) {
+ Py_DECREF(ret);
+ ret = NULL;
}
Py_DECREF(next);
- Py_DECREF(ret);
- return NULL;
+ Py_DECREF(itlist);
+ return ret;
}
- PyTuple_SET_ITEM(next, j, item);
+ PyTuple_SET_ITEM(next, i, item);
}
- PyList_Append(ret, next);
+
+ status = PyList_Append(ret, next);
Py_DECREF(next);
+ if (status < 0)
+ goto Fail_ret_itlist;
}
- /* no return */
+
+Fail_ret_itlist:
+ Py_DECREF(itlist);
+Fail_ret:
+ Py_DECREF(ret);
+ return NULL;
}