mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00
No need to cast a Py_ssize_t, use %z in PyErr_Format
This commit is contained in:
parent
4b16de4350
commit
0e2cbabb8d
1 changed files with 2 additions and 2 deletions
|
@ -1677,9 +1677,9 @@ string_join(PyStringObject *self, PyObject *orig)
|
|||
}
|
||||
#endif
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"sequence item %i: expected string,"
|
||||
"sequence item %zd: expected string,"
|
||||
" %.80s found",
|
||||
/*XXX*/(int)i, item->ob_type->tp_name);
|
||||
i, item->ob_type->tp_name);
|
||||
Py_DECREF(seq);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue