Patch 549187. Improve string formatting error message.

This commit is contained in:
Raymond Hettinger 2002-05-21 15:14:57 +00:00
parent 5ecb7aaa6a
commit 0ebac97058
2 changed files with 4 additions and 4 deletions

View File

@ -3628,7 +3628,7 @@ PyString_Format(PyObject *format, PyObject *args)
}
if (dict && (argidx < arglen) && c != '%') {
PyErr_SetString(PyExc_TypeError,
"not all arguments converted");
"not all arguments converted during string formatting");
goto error;
}
Py_XDECREF(temp);
@ -3636,7 +3636,7 @@ PyString_Format(PyObject *format, PyObject *args)
} /* until end */
if (argidx < arglen && !dict) {
PyErr_SetString(PyExc_TypeError,
"not all arguments converted");
"not all arguments converted during string formatting");
goto error;
}
if (args_owned) {

View File

@ -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;
}