Commit a361bd8d authored by Neal Norwitz's avatar Neal Norwitz

Fix compiler warning (int vs Py_ssize_t mismatch

parent 87f28752
......@@ -2141,7 +2141,7 @@ builtin_zip(PyObject *self, PyObject *args)
if (it == NULL) {
if (PyErr_ExceptionMatches(PyExc_TypeError))
PyErr_Format(PyExc_TypeError,
"zip argument #%d must support iteration",
"zip argument #%zd must support iteration",
i+1);
goto Fail_ret_itlist;
}
......
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