summaryrefslogtreecommitdiff
path: root/Include/iterobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-08-25 23:26:40 +0000
committerGuido van Rossum <guido@python.org>2006-08-25 23:26:40 +0000
commitb65fb33b022de9fefc8af76339f645c16614e2eb (patch)
tree9a4bc79caeb5e03b5c198282a9d85589d62537a2 /Include/iterobject.h
parente2e23ef97da1ce44c604d86d1f21c2701d7e581f (diff)
downloadcpython-git-b65fb33b022de9fefc8af76339f645c16614e2eb.tar.gz
SF patch 1546297 (with some tweaks):
Create a real zip iterator object; not using itertools.izip (Brian Holmes).
Diffstat (limited to 'Include/iterobject.h')
-rw-r--r--Include/iterobject.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/iterobject.h b/Include/iterobject.h
index c078ebb28b..69deb45de3 100644
--- a/Include/iterobject.h
+++ b/Include/iterobject.h
@@ -16,6 +16,9 @@ PyAPI_DATA(PyTypeObject) PyCallIter_Type;
#define PyCallIter_Check(op) ((op)->ob_type == &PyCallIter_Type)
PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);
+
+PyObject* _PyZip_CreateIter(PyObject* args);
+
#ifdef __cplusplus
}
#endif