commit | 943094566a61c0218f3c5bf2e71b8ed37a381350 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Dec 10 14:01:05 1991 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Dec 10 14:01:05 1991 +0000 |
tree | 9810800a27ac0f8de401bb083d2dba40d2e21a88 | |
parent | 7177657bf2dae89cff8c7d4b2b636ee4287ad6f5 [diff] |
Add warning XXX that 09.9 isn't accepted.
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 009c193..3bd9530 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c
@@ -510,6 +510,8 @@ } while (isxdigit(c)); } else { + /* XXX This is broken! E.g., + 09.9 should be accepted as float! */ /* Octal; c is first char of it */ /* There's no 'isoctdigit' macro, sigh */ while ('0' <= c && c < '8') {