aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Include/iterobject.h
diff options
context:
space:
mode:
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 c078ebb28b0..69deb45de3a 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