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 arunkumarrajan
Recipients arunkumarrajan
Date 2007-11-23.04:40:29
SpamBayes Score 0.0058314116
Marked as misclassified No
Message-id <1195792830.97.0.696373913002.issue1490@psf.upfronthosting.co.za>
In-reply-to
Content
PythonWin 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit 
(Intel)] on win32.
Portions Copyright 1994-2006 Mark Hammond - see 'Help/About PythonWin' 
for further copyright information.
>>> 
>>> 
>>> eval("02*2")
4
>>> 
>>> eval("08*2")
Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
  File "<string>", line 1
    08*2
     ^
SyntaxError: invalid token
>>> eval("09*2")
Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
  File "<string>", line 1
    09*2
     ^
SyntaxError: invalid token
>>> 
>>> 
>>> eval("07*2")
14
>>> 
>>> eval("010*2")
16
>>> eval("9*2")
18
>>>
History
Date User Action Args
2007-11-23 04:40:31arunkumarrajansetspambayes_score: 0.00583141 -> 0.0058314116
recipients: + arunkumarrajan
2007-11-23 04:40:31arunkumarrajansetspambayes_score: 0.00583141 -> 0.00583141
messageid: <1195792830.97.0.696373913002.issue1490@psf.upfronthosting.co.za>
2007-11-23 04:40:30arunkumarrajanlinkissue1490 messages
2007-11-23 04:40:29arunkumarrajancreate