mirror of https://github.com/python/cpython
[3.13] gh-120526: Correct signature of map() builtin (GH-120528) (GH-120539)
map() requires at least one iterable arg.
(cherry picked from commit d4039d3f6f
)
Signed-off-by: Adam Williamson <awilliam@redhat.com>
Co-authored-by: Adam Williamson <adam@blueradius.ca>
This commit is contained in:
parent
3c88898a69
commit
9f0269d6ae
|
@ -1475,7 +1475,7 @@ static PyMethodDef map_methods[] = {
|
|||
|
||||
|
||||
PyDoc_STRVAR(map_doc,
|
||||
"map(function, /, *iterables)\n\
|
||||
"map(function, iterable, /, *iterables)\n\
|
||||
--\n\
|
||||
\n\
|
||||
Make an iterator that computes the function using arguments from\n\
|
||||
|
|
Loading…
Reference in New Issue