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 Chris.Wright
Recipients Chris.Wright
Date 2012-07-05.14:21:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341498114.62.0.773022123174.issue15254@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.6.6 tk 8.5
Idle 2.6.6

I was trying to generate a multidimensional list, and my test list kept giving errors highlighting 08 as an invalid token.

>>> cube = [[[01,02,03],[04,05,06],[07,08,09]],[[11,12,13],[14,15,16],[17,18,19]],[[21,22,3],[24,25,26],[27,28,29]]]
SyntaxError: invalid token
>>> cube = [[[01,02,03,04,05,06,07,08]]
SyntaxError: invalid token
>>> cube = [08]
SyntaxError: invalid token
History
Date User Action Args
2012-07-05 14:21:54Chris.Wrightsetrecipients: + Chris.Wright
2012-07-05 14:21:54Chris.Wrightsetmessageid: <1341498114.62.0.773022123174.issue15254@psf.upfronthosting.co.za>
2012-07-05 14:21:54Chris.Wrightlinkissue15254 messages
2012-07-05 14:21:53Chris.Wrightcreate