mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
Patch 549187. Improve string formatting error message.
This commit is contained in:
parent
5ecb7aaa6a
commit
0ebac97058
2 changed files with 4 additions and 4 deletions
|
@ -5708,7 +5708,7 @@ PyObject *PyUnicode_Format(PyObject *format,
|
|||
}
|
||||
if (dict && (argidx < arglen) && c != '%') {
|
||||
PyErr_SetString(PyExc_TypeError,
|
||||
"not all arguments converted");
|
||||
"not all arguments converted during string formatting");
|
||||
goto onError;
|
||||
}
|
||||
Py_XDECREF(temp);
|
||||
|
@ -5716,7 +5716,7 @@ PyObject *PyUnicode_Format(PyObject *format,
|
|||
} /* until end */
|
||||
if (argidx < arglen && !dict) {
|
||||
PyErr_SetString(PyExc_TypeError,
|
||||
"not all arguments converted");
|
||||
"not all arguments converted during string formatting");
|
||||
goto onError;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue