Jeff Hardy skrev 2011-02-13 06:25:
It looks like http://ironpython.codeplex.com/workitem/14022 will only
repro on non-english versions of XP that use , as the decimal
separator instead of .
If you have one of those, can you see if the issue is still present in
2.7B2. From the notes, it looks like just changing the locale is not
enough - it has to be a non-english version.
- Jeff
_______________________________________________
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
Hi,
I could not reproduce the problem on my machine (swedish windows xp)
IronPython 2.7 Beta 2 (2.7.0.20) on .NET 4.0.30319.1
Type "help", "copyright", "credits" or "license" for more information.
>>> 3.14
3.14
>>> 3,14
(3, 14)
>>> import math
>>> 3.14159265359
3.14159265359
>>> float(repr(float(repr(math.pi))))
3.141592653589793
>>>
/Jörgen
_______________________________________________
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com