Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 810aa6d

Browse files
committed
fix variable name
1 parent 33f8f15 commit 810aa6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/codecs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ PyObject *PyCodec_NameReplaceErrors(PyObject *exc)
10191019
*outp++ = Py_hexdigits[c&0xf];
10201020
}
10211021

1022-
assert(out == start + ressize);
1022+
assert(outp == start + ressize);
10231023
assert(_PyUnicode_CheckConsistency(res, 1));
10241024
restuple = Py_BuildValue("(Nn)", res, end);
10251025
Py_DECREF(object);

0 commit comments

Comments
 (0)