Fix typo
This commit is contained in:
parent
f581215b69
commit
ceecb8d3d8
|
@ -366,7 +366,7 @@ loops that truncate the stream.
|
||||||
# izip('ABCD', 'xy') --> Ax By
|
# izip('ABCD', 'xy') --> Ax By
|
||||||
iterables = map(iter, iterables)
|
iterables = map(iter, iterables)
|
||||||
while iterables:
|
while iterables:
|
||||||
yield yield tuple(map(next, iterables))
|
yield tuple(map(next, iterables))
|
||||||
|
|
||||||
.. versionchanged:: 2.4
|
.. versionchanged:: 2.4
|
||||||
When no iterables are specified, returns a zero length iterator instead of
|
When no iterables are specified, returns a zero length iterator instead of
|
||||||
|
|
Loading…
Reference in New Issue