summaryrefslogtreecommitdiffstats
path: root/Parser/tokenizer.c
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-24 18:07:05 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-24 18:07:05 (GMT)
commit5216721a532c348bcc59a03c7ee206f2cb2ae497 (patch)
treed6d54b8cd3713662351f829f71e8d5eb529b4d8d /Parser/tokenizer.c
parent11034c6c167c238d32fdba66300d496364a6d366 (diff)
downloadcpython-5216721a532c348bcc59a03c7ee206f2cb2ae497.zip
cpython-5216721a532c348bcc59a03c7ee206f2cb2ae497.tar.gz
cpython-5216721a532c348bcc59a03c7ee206f2cb2ae497.tar.bz2
Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).
This happened only when 8 is the first digit. Credits go to Lukas Meuser.
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r--Parser/tokenizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index 29fb114..1d0a4aa 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -1351,7 +1351,7 @@ tok_get(register struct tok_state *tok, char **p_start, char **p_end)
else if (c == 'o' || c == 'O') {
/* Octal */
c = tok_nextc(tok);
- if (c < '0' || c > '8') {
+ if (c < '0' || c >= '8') {
tok->done = E_TOKEN;
tok_backup(tok, c);
return ERRORTOKEN;