]> granicus.if.org Git - python/commitdiff
cleanup - removed trailing whitespace
authorAndrew Dalke <dalke@dalkescientific.com>
Sat, 27 May 2006 14:16:40 +0000 (14:16 +0000)
committerAndrew Dalke <dalke@dalkescientific.com>
Sat, 27 May 2006 14:16:40 +0000 (14:16 +0000)
Objects/stringobject.c

index c881927a42f320346ede47485707b6bd78d5104e..37c7214289c4c25a92efbb4c6dc44e34c5d0abd7 100644 (file)
@@ -1364,7 +1364,7 @@ static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"};
        count++; }
 
 /* Always force the list to the expected size. */
-#define FIX_PREALLOC_SIZE(list) ((PyListObject *)list)->ob_size = count;               
+#define FIX_PREALLOC_SIZE(list) ((PyListObject *)list)->ob_size = count;       
 
 #define SKIP_SPACE(s, i, len)    { while (i<len &&  isspace(Py_CHARMASK(s[i]))) i++; }
 #define SKIP_NONSPACE(s, i, len) { while (i<len && !isspace(Py_CHARMASK(s[i]))) i++; }