Message1562
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
>>>
|
|
| Date |
User |
Action |
Args |
| 2008-02-20 17:17:48 | admin | link | issue1708080 messages |
| 2008-02-20 17:17:48 | admin | create | |
|