diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-18 21:03:40 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-18 21:03:40 (GMT) |
commit | d657303910244aea88c192f5629d5fe9ea778a6d (patch) | |
tree | 5ee204a33e3a42ceff234c301daf286e2baaac62 /Python | |
parent | 0f8117f14a98d697828b96ec1130105332f67dad (diff) | |
download | cpython-d657303910244aea88c192f5629d5fe9ea778a6d.zip cpython-d657303910244aea88c192f5629d5fe9ea778a6d.tar.gz cpython-d657303910244aea88c192f5629d5fe9ea778a6d.tar.bz2 |
Fix whitespace botch.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 21815f9..b25b20a 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -112,7 +112,7 @@ vgetargs1(PyObject *args, char *format, va_list *p_va, int compat) } else if (level != 0) ; /* Pass */ - else if (c == 'e') + else if (c == 'e') ; /* Pass */ else if (isalpha(c)) max++; |