diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 5b0574aeb33..bf69e212033 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -366,7 +366,7 @@ loops that truncate the stream. # izip('ABCD', 'xy') --> Ax By iterables = map(iter, iterables) while iterables: - yield yield tuple(map(next, iterables)) + yield tuple(map(next, iterables)) .. versionchanged:: 2.4 When no iterables are specified, returns a zero length iterator instead of