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

This commit is contained in:
Andrew M. Kuchling 2000-12-23 14:11:28 +00:00
parent 4e36d5885b
commit f07aad171a
1 changed files with 3 additions and 2 deletions

View File

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