From: Benjamin Peterson Date: Wed, 26 Nov 2014 20:20:51 +0000 (-0600) Subject: fix variable name X-Git-Tag: v3.5.0a1~437 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=810aa6db3472e48e182b185cc4375615977c85f5;p=thirdparty%2FPython%2Fcpython.git fix variable name --- diff --git a/Python/codecs.c b/Python/codecs.c index 8ffa80b2139e..ff9d1dec4688 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -1019,7 +1019,7 @@ PyObject *PyCodec_NameReplaceErrors(PyObject *exc) *outp++ = Py_hexdigits[c&0xf]; } - assert(out == start + ressize); + assert(outp == start + ressize); assert(_PyUnicode_CheckConsistency(res, 1)); restuple = Py_BuildValue("(Nn)", res, end); Py_DECREF(object);