Issue1013
Created on 2007-08-24 19:59 by Rayfward, last changed 2007-08-24 20:03 by georg.brandl.
|
msg55272 - (view) |
Author: Ray Ward (Rayfward) |
Date: 2007-08-24 19:59 |
|
>>> eval("9")
9
Works but.
>>> eval("09")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1
09
^
SyntaxError: invalid token
|
|
msg55273 - (view) |
Author: Georg Brandl (georg.brandl) |
Date: 2007-08-24 20:03 |
|
This is not a bug. Integers beginning with "0" are octal literals in Python 2.x,
and "9" is not a valid octal digit.
Closing as Invalid.
|
|
| Date |
User |
Action |
Args |
| 2007-08-24 20:03:50 | georg.brandl | set | status: open -> closed nosy:
+ georg.brandl messages:
+ msg55273 resolution: invalid |
| 2007-08-24 19:59:24 | Rayfward | create | |
|