This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2007年08月24日 19:59 by Rayfward, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| 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) * (Python committer) | 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. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:26 | admin | set | github: 45354 |
| 2007年08月24日 20:03:50 | georg.brandl | set | status: open -> closed nosy: + georg.brandl messages: + msg55273 resolution: not a bug |
| 2007年08月24日 19:59:24 | Rayfward | create | |