cleanup - removed trailing whitespace

This commit is contained in:
Andrew Dalke 2006-05-27 14:16:40 +00:00
parent 4e30617bad
commit d49d5c49ba
1 changed files with 1 additions and 1 deletions

View 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++; }