summaryrefslogtreecommitdiff
path: root/Python/codecs.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-11-26 14:20:51 -0600
committerBenjamin Peterson <benjamin@python.org>2014-11-26 14:20:51 -0600
commit1b925e9225f50138d91d85d6a100ce7fe3d49526 (patch)
tree2a3933793e0baf266ab5ea2f27460a39862136dc /Python/codecs.c
parente96539895c32834c304bda68e17702b7d69801dc (diff)
downloadcpython-1b925e9225f50138d91d85d6a100ce7fe3d49526.tar.gz
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 8ffa80b213..ff9d1dec46 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);