Kaydet (Commit) 810aa6db authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix variable name

üst 33f8f15b
...@@ -1019,7 +1019,7 @@ PyObject *PyCodec_NameReplaceErrors(PyObject *exc) ...@@ -1019,7 +1019,7 @@ PyObject *PyCodec_NameReplaceErrors(PyObject *exc)
*outp++ = Py_hexdigits[c&0xf]; *outp++ = Py_hexdigits[c&0xf];
} }
assert(out == start + ressize); assert(outp == start + ressize);
assert(_PyUnicode_CheckConsistency(res, 1)); assert(_PyUnicode_CheckConsistency(res, 1));
restuple = Py_BuildValue("(Nn)", res, end); restuple = Py_BuildValue("(Nn)", res, end);
Py_DECREF(object); Py_DECREF(object);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment