mirror of
https://github.com/python/cpython.git
synced 2025-09-17 22:20:23 +00:00
Fix typo
This commit is contained in:
parent
31559b6123
commit
cccfc825e4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue