Issue 1013: eval error - Python tracker (original) (raw)

Issue1013

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 "", line 1, in File "", 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 -> closednosy: + georg.brandlmessages: + resolution: not a bug
2007-08-24 19:59:24 Rayfward create