mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Replace map(None, *iterables) with zip(*iterables).
This commit is contained in:
parent
86def6cb2b
commit
1dfde1ddc0
9 changed files with 20 additions and 90 deletions
|
@ -815,7 +815,6 @@ Return an iterator yielding the results of applying the function to the\n\
|
|||
items of the argument iterables(s). If more than one iterable is given,\n\
|
||||
the function is called with an argument list consisting of the\n\
|
||||
corresponding item of each iterable, until an iterable is exhausted.\n\
|
||||
If the function is None, 'lambda *a: a' is assumed.\n\
|
||||
(This is identical to itertools.imap().)");
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue