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.

Author serhiy.storchaka
Recipients benjamin.peterson, mgedmin, serhiy.storchaka
Date 2014-02-12.17:21:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392225679.1.0.532924642796.issue20608@psf.upfronthosting.co.za>
In-reply-to
Content
Note that "invalid token" is emitted only on invalid first digit:

>>> 0b2
  File "<stdin>", line 1
    0b2
     ^
SyntaxError: invalid token
>>> 0b02
  File "<stdin>", line 1
    0b02
       ^
SyntaxError: invalid syntax


See also issue1634034.
History
Date User Action Args
2014-02-12 17:21:19serhiy.storchakasetrecipients: + serhiy.storchaka, mgedmin, benjamin.peterson
2014-02-12 17:21:19serhiy.storchakasetmessageid: <1392225679.1.0.532924642796.issue20608@psf.upfronthosting.co.za>
2014-02-12 17:21:19serhiy.storchakalinkissue20608 messages
2014-02-12 17:21:18serhiy.storchakacreate