summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAndrew Dalke <dalke@dalkescientific.com>2006-05-27 14:16:40 (GMT)
committerAndrew Dalke <dalke@dalkescientific.com>2006-05-27 14:16:40 (GMT)
commitd49d5c49ba4a7e5a82e2a7e4971bdbc82af4f910 (patch)
tree0a47d91db7ad1ad18a9f73be220ef362902d32f1 /Objects
parent4e30617bad4c41ea8d33cf4e7b79f3dcf90bd5b7 (diff)
downloadcpython-d49d5c49ba4a7e5a82e2a7e4971bdbc82af4f910.zip
cpython-d49d5c49ba4a7e5a82e2a7e4971bdbc82af4f910.tar.gz
cpython-d49d5c49ba4a7e5a82e2a7e4971bdbc82af4f910.tar.bz2
cleanup - removed trailing whitespace
Diffstat (limited to 'Objects')
-rw-r--r--Objects/stringobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index c881927..37c7214 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -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++; }