Commit 572a9f32 authored by Thomas Wouters's avatar Thomas Wouters

Use %zd format characters for Py_ssize_t types.

parent 7c187bcc
...@@ -1686,13 +1686,13 @@ PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t m ...@@ -1686,13 +1686,13 @@ PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t m
if (name != NULL) if (name != NULL)
PyErr_Format( PyErr_Format(
PyExc_TypeError, PyExc_TypeError,
"%s expected %s%d arguments, got %d", "%s expected %s%zd arguments, got %zd",
name, (min == max ? "" : "at least "), min, l); name, (min == max ? "" : "at least "), min, l);
else else
PyErr_Format( PyErr_Format(
PyExc_TypeError, PyExc_TypeError,
"unpacked tuple should have %s%d elements," "unpacked tuple should have %s%zd elements,"
" but has %d", " but has %zd",
(min == max ? "" : "at least "), min, l); (min == max ? "" : "at least "), min, l);
va_end(vargs); va_end(vargs);
return 0; return 0;
...@@ -1701,13 +1701,13 @@ PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t m ...@@ -1701,13 +1701,13 @@ PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t m
if (name != NULL) if (name != NULL)
PyErr_Format( PyErr_Format(
PyExc_TypeError, PyExc_TypeError,
"%s expected %s%d arguments, got %d", "%s expected %s%zd arguments, got %zd",
name, (min == max ? "" : "at most "), max, l); name, (min == max ? "" : "at most "), max, l);
else else
PyErr_Format( PyErr_Format(
PyExc_TypeError, PyExc_TypeError,
"unpacked tuple should have %s%d elements," "unpacked tuple should have %s%zd elements,"
" but has %d", " but has %zd",
(min == max ? "" : "at most "), max, l); (min == max ? "" : "at most "), max, l);
va_end(vargs); va_end(vargs);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment