mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
GH-90829: Fix empty iterable error message in min/max (#31181)
This commit is contained in:
parent
b034fd3e59
commit
0741da8d28
2 changed files with 11 additions and 3 deletions
|
@ -1814,7 +1814,7 @@ min_max(PyObject *args, PyObject *kwds, int op)
|
|||
maxitem = Py_NewRef(defaultval);
|
||||
} else {
|
||||
PyErr_Format(PyExc_ValueError,
|
||||
"%s() arg is an empty sequence", name);
|
||||
"%s() iterable argument is empty", name);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue