diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-10-02 10:08:47 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-10-02 10:08:47 (GMT) |
commit | 419968c235ce0a03041470366d3f5ca57c657433 (patch) | |
tree | f408dc4e0fdb609c88eb54f3c3a64231e910d7d0 /Python/ceval.c | |
parent | bdfe55f332328de3da949b8a1f07341d0f04aa40 (diff) | |
parent | 8e9045d0d8b612e5f8231e5c854625ff78a4b110 (diff) | |
download | cpython-419968c235ce0a03041470366d3f5ca57c657433.zip cpython-419968c235ce0a03041470366d3f5ca57c657433.tar.gz cpython-419968c235ce0a03041470366d3f5ca57c657433.tar.bz2 |
Issue #27358: Merge from 3.6
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 2cb0fe7..3e74819 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); |