summaryrefslogtreecommitdiffstats
path: root/Python/codecs.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-11-26 20:20:51 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-11-26 20:20:51 (GMT)
commit810aa6db3472e48e182b185cc4375615977c85f5 (patch)
tree200d7aedb41e8ef47905a3de58a9e25563a79ea0 /Python/codecs.c
parent33f8f15bdd313b1e2d1c99d0971659e983a35672 (diff)
downloadcpython-810aa6db3472e48e182b185cc4375615977c85f5.zip
cpython-810aa6db3472e48e182b185cc4375615977c85f5.tar.gz
cpython-810aa6db3472e48e182b185cc4375615977c85f5.tar.bz2
fix variable name
Diffstat (limited to 'Python/codecs.c')
-rw-r--r--Python/codecs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/codecs.c b/Python/codecs.c
index 8ffa80b..ff9d1de 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);