mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
#3071: tell how many values were expected when unpacking too many.
This commit is contained in:
parent
93eb42e805
commit
0310a83e7f
2 changed files with 5 additions and 4 deletions
|
@ -3464,7 +3464,8 @@ unpack_iterable(PyObject *v, int argcnt, int argcntafter, PyObject **sp)
|
|||
return 1;
|
||||
}
|
||||
Py_DECREF(w);
|
||||
PyErr_SetString(PyExc_ValueError, "too many values to unpack");
|
||||
PyErr_Format(PyExc_ValueError, "too many values to unpack "
|
||||
"(expected %d)", argcnt);
|
||||
goto Error;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue