commit | cccfc825e49760d8e46db38df50fb992a184b3ee | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Apr 20 18:23:57 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Apr 20 18:23:57 2009 +0000 |
tree | b83afaa80679a573fe5c32da012e226ff4b12169 | |
parent | 31559b6123a520e1c2ef179d75cbd1c3ececf1f7 [diff] [blame] |
Fix typo
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 6b801bb..918918c 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst
@@ -433,7 +433,7 @@ # 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