commit | ceecb8d3d8213d94aa1df4a5bdb01fd9e30016c6 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Apr 20 18:23:26 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Apr 20 18:23:26 2009 +0000 |
tree | 0ac3ed662c6e003602c8b4af132a15344e5d1f16 | |
parent | f581215b6965d4e4f2e06a082ba68d1524c80299 [diff] [blame] |
Fix typo
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 5b0574a..bf69e21 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst
@@ -366,7 +366,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