summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-10-02 13:08:25 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-10-02 13:08:25 +0300
commit1344635504637fc1aedbde3896bef330448a490f (patch)
treea8bfbc2d810fca692f743cb81ad87619ece70853 /Python
parent2117222ea636bdc5245ac9e9f1de290ab709e1d8 (diff)
downloadcpython-1344635504637fc1aedbde3896bef330448a490f.tar.gz
Issue #27358: Fix typo in error message
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index c443305211..82cc9a2835 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);