From b65fb33b022de9fefc8af76339f645c16614e2eb Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 25 Aug 2006 23:26:40 +0000 Subject: SF patch 1546297 (with some tweaks): Create a real zip iterator object; not using itertools.izip (Brian Holmes). --- Include/iterobject.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Include/iterobject.h') 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 -- cgit v1.2.1