summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-12-04 11:06:25 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-12-04 11:06:25 (GMT)
commitc9fb3c64177f8efefd18a11f86bcf2f94d0f7c90 (patch)
tree5d6bd6302b1c8a04a811e8b6d1b9ae295a0b8f4b /Objects
parentc29cc6a8f27bcbe74772b691a352c8e299a6abfa (diff)
downloadcpython-c9fb3c64177f8efefd18a11f86bcf2f94d0f7c90.zip
cpython-c9fb3c64177f8efefd18a11f86bcf2f94d0f7c90.tar.gz
cpython-c9fb3c64177f8efefd18a11f86bcf2f94d0f7c90.tar.bz2
Fix indentation in Objects/longobject.c
Diffstat (limited to 'Objects')
-rw-r--r--Objects/longobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 534e52d..4737787 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -2144,9 +2144,9 @@ PyLong_FromUnicode(Py_UNICODE *u, Py_ssize_t length, int base)
/* Replace non-ASCII whitespace with ' ' */
ptr = PyUnicode_AS_UNICODE(asciidig);
for (i = 0; i < length; i++) {
- Py_UNICODE ch = ptr[i];
- if (ch > 127 && Py_UNICODE_ISSPACE(ch))
- ptr[i] = ' ';
+ Py_UNICODE ch = ptr[i];
+ if (ch > 127 && Py_UNICODE_ISSPACE(ch))
+ ptr[i] = ' ';
}
buffer = _PyUnicode_AsStringAndSize(asciidig, &buflen);
if (buffer == NULL) {