Message1562

Author pekka.klarck
Recipients
Date 2007-04-26.14:10:43
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Jython 2.2b1 on java1.5.0_10 (JIT: null)
Type "copyright", "credits" or "license" for more information.
>>> float("1d")
1.0
>>> float("1D")
1.0
>>>


Python 2.5 (r25:51908, Mar 13 2007, 08:13:14) 
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> float("1d")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: invalid literal for float(): 1d
>>> float("1D")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: invalid literal for float(): 1D
>>> 


History
Date User Action Args
2008-02-20 17:17:48adminlinkissue1708080 messages
2008-02-20 17:17:48admincreate