mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
fix indentation; looks like all I managed to do the first time is make things uglier
This commit is contained in:
parent
d17fec74e5
commit
be1399e39a
1 changed files with 2579 additions and 2579 deletions
|
@ -3587,9 +3587,9 @@ static PyObject *unicode_encode_ucs1(const Py_UNICODE *p,
|
|||
collstart-startp, collend-startp, &newpos);
|
||||
if (repunicode == NULL)
|
||||
goto onError;
|
||||
/* need more space? (at least enough for what we
|
||||
have+the replacement+the rest of the string, so
|
||||
we won't have to check space for encodable characters) */
|
||||
/* need more space? (at least enough for what we have+the
|
||||
replacement+the rest of the string, so we won't have to
|
||||
check space for encodable characters) */
|
||||
respos = str-PyString_AS_STRING(res);
|
||||
repsize = PyUnicode_GET_SIZE(repunicode);
|
||||
requiredsize = respos+repsize+(endp-collend);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue