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

Skip to content

Commit c9fb3c6

Browse files
committed
Fix indentation in Objects/longobject.c
1 parent c29cc6a commit c9fb3c6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Objects/longobject.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2144,9 +2144,9 @@ PyLong_FromUnicode(Py_UNICODE *u, Py_ssize_t length, int base)
21442144
/* Replace non-ASCII whitespace with ' ' */
21452145
ptr = PyUnicode_AS_UNICODE(asciidig);
21462146
for (i = 0; i < length; i++) {
2147-
Py_UNICODE ch = ptr[i];
2148-
if (ch > 127 && Py_UNICODE_ISSPACE(ch))
2149-
ptr[i] = ' ';
2147+
Py_UNICODE ch = ptr[i];
2148+
if (ch > 127 && Py_UNICODE_ISSPACE(ch))
2149+
ptr[i] = ' ';
21502150
}
21512151
buffer = _PyUnicode_AsStringAndSize(asciidig, &buflen);
21522152
if (buffer == NULL) {

0 commit comments

Comments
 (0)