Commit e1f82f62 authored by Berker Peksag's avatar Berker Peksag

Issue #27358: Fix typo in error message

parent 606d9fb8
...@@ -2721,7 +2721,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag) ...@@ -2721,7 +2721,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
if (PyDict_Update(sum, arg) < 0) { if (PyDict_Update(sum, arg) < 0) {
if (PyErr_ExceptionMatches(PyExc_AttributeError)) { if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
"'%.200s' object is not a mapping1", "'%.200s' object is not a mapping",
arg->ob_type->tp_name); arg->ob_type->tp_name);
} }
Py_DECREF(sum); Py_DECREF(sum);
......
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