mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
I suppose that the author would like to truncate the type name, not get a string of 100/200 characters.
This commit is contained in:
parent
39bc38c39c
commit
0a5f65ab0a
2 changed files with 2 additions and 2 deletions
|
@ -4130,7 +4130,7 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
|
|||
if (PyErr_ExceptionMatches(PyExc_TypeError)) {
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"%.200s%.200s argument after * "
|
||||
"must be a sequence, not %200s",
|
||||
"must be a sequence, not %.200s",
|
||||
PyEval_GetFuncName(func),
|
||||
PyEval_GetFuncDesc(func),
|
||||
stararg->ob_type->tp_name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue