Commit e6a0e804 authored by Max Bernstein's avatar Max Bernstein Committed by Miss Islington (bot)

fix confusing argument name in unicodeobject.c (GH-12653)

parent b00479d4
......@@ -1765,9 +1765,9 @@ PyUnicodeDecodeError_GetEnd(PyObject *exc, Py_ssize_t *end)
int
PyUnicodeTranslateError_GetEnd(PyObject *exc, Py_ssize_t *start)
PyUnicodeTranslateError_GetEnd(PyObject *exc, Py_ssize_t *end)
{
return PyUnicodeEncodeError_GetEnd(exc, start);
return PyUnicodeEncodeError_GetEnd(exc, end);
}
......
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