Kaydet (Commit) ceecb8d3 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix typo

üst f581215b
......@@ -366,7 +366,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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment