From: Raymond Hettinger Date: Mon, 20 Apr 2009 18:23:57 +0000 (+0000) Subject: Fix typo X-Git-Tag: v2.7a1~1445 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cccfc825e49760d8e46db38df50fb992a184b3ee;p=python Fix typo --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 6b801bb6a4..918918cc94 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -433,7 +433,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