diff options
author | Guido van Rossum <guido@python.org> | 2006-08-25 23:26:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-25 23:26:40 (GMT) |
commit | b65fb33b022de9fefc8af76339f645c16614e2eb (patch) | |
tree | 9a4bc79caeb5e03b5c198282a9d85589d62537a2 /Include/iterobject.h | |
parent | e2e23ef97da1ce44c604d86d1f21c2701d7e581f (diff) | |
download | cpython-b65fb33b022de9fefc8af76339f645c16614e2eb.zip cpython-b65fb33b022de9fefc8af76339f645c16614e2eb.tar.gz cpython-b65fb33b022de9fefc8af76339f645c16614e2eb.tar.bz2 |
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.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/iterobject.h b/Include/iterobject.h index c078ebb..69deb45 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 |