Commit f07aad17 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

CHange error messages for ord(), using "string" instead of "string or Unicode"

parent 4e36d588
...@@ -1524,13 +1524,14 @@ builtin_ord(PyObject *self, PyObject *args) ...@@ -1524,13 +1524,14 @@ builtin_ord(PyObject *self, PyObject *args)
} }
} else { } else {
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"ord() expected string or Unicode character, " \ "ord() expected string of length 1, but " \
"%.200s found", obj->ob_type->tp_name); "%.200s found", obj->ob_type->tp_name);
return NULL; return NULL;
} }
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"ord() expected a character, length-%d string found", "ord() expected a character, "
"but string of length %d found",
size); size);
return NULL; return NULL;
} }
......
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