}
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);
} /* 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) {
}
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);
} /* until end */
if (argidx < arglen && !dict) {
PyErr_SetString(PyExc_TypeError,
- "not all arguments converted");
+ "not all arguments converted during string formatting");
goto onError;
}