From: Berker Peksag Date: Sun, 2 Oct 2016 10:08:25 +0000 (+0300) Subject: Issue #27358: Fix typo in error message X-Git-Tag: v3.6.0b2~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e9045d0d8b612e5f8231e5c854625ff78a4b110;p=thirdparty%2FPython%2Fcpython.git Issue #27358: Fix typo in error message --- diff --git a/Python/ceval.c b/Python/ceval.c index c44330521104..82cc9a283578 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2721,7 +2721,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag) if (PyDict_Update(sum, arg) < 0) { if (PyErr_ExceptionMatches(PyExc_AttributeError)) { PyErr_Format(PyExc_TypeError, - "'%.200s' object is not a mapping1", + "'%.200s' object is not a mapping", arg->ob_type->tp_name); } Py_DECREF(sum);