We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6457e7 commit 7aca0e5Copy full SHA for 7aca0e5
Doc/library/functions.rst
@@ -1021,9 +1021,9 @@ are always available. They are listed here in alphabetical order.
1021
The contents of this dictionary should not be modified; changes may not
1022
affect the values of local and free variables used by the interpreter.
1023
1024
-.. function:: map(function, /, *iterables)
+.. function:: map(function, /, iterable, *iterables)
1025
1026
- Return an iterator that applies *function* to every item of *iterables*,
+ Return an iterator that applies *function* to every item of *iterable*,
1027
yielding the results. If additional *iterables* arguments are passed,
1028
*function* must take that many arguments and is applied to the items from all
1029
iterables in parallel. With multiple iterables, the iterator stops when the
0 commit comments