There were issues with float point parsing in IronPython 0.6. You can use the newest available release 0.7.1 which has these issues fixed (I just ran your commands on the newest release)

 

The newest IronPython 0.7.1 can be downloaded from:

 

http://workspaces.gotdotnet.com/ironpython

 

Martin

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hector Miuler Malpica Gallegos
Sent: Monday, April 04, 2005 3:07 PM
To: users-ironpython.com@lists.ironpython.com
Subject: [IronPython] Error in float

 

IronPython 0.6

>>> type (1e-1)
<type 'float'>
>>> type (0.1)
<type 'float'>
>>> 1e-1
0,1
>>> 0.1
1
>>> 1e-1*2
0,2
>>> 0.1*2
2
>>>

_______________________________________________
users-ironpython.com mailing list
users-ironpython.com@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to