[Python-checkins] cpython: fix variable name

benjamin.peterson python-checkins at python.org
Wed Nov 26 21:21:04 CET 2014


https://hg.python.org/cpython/rev/ce8a8531d29a
changeset:   93602:ce8a8531d29a
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Nov 26 14:20:51 2014 -0600
summary:
  fix variable name

files:
  Python/codecs.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/codecs.c b/Python/codecs.c
--- a/Python/codecs.c
+++ b/Python/codecs.c
@@ -1019,7 +1019,7 @@
             *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);

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list