mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Fix typo in error message
This commit is contained in:
@@ -176,7 +176,7 @@ PyObject *PyString_Decode(const char *s,
|
||||
}
|
||||
if (!PyString_Check(str)) {
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"decoder did not return an string object (type=%.400s)",
|
||||
"decoder did not return a string object (type=%.400s)",
|
||||
str->ob_type->tp_name);
|
||||
Py_DECREF(str);
|
||||
goto onError;
|
||||
|
||||
Reference in New Issue
Block a user