On Sun, Feb 13, 2011 at 10:15 PM, Simon Dahlbacka <simon.dahlba...@gmail.com> wrote: > Works for me also. Swedish xp(sv-FI) > > On Feb 14, 2011 7:11 AM, "Jeff Hardy" <jdha...@gmail.com> wrote: >> I'd like one other person to confirm this is fixed before I close - >> Spanish or German preferably, since they are mentioned in the bug. >> >> - Jeff >> >> On Sun, Feb 13, 2011 at 12:20 AM, Jörgen Stenarson >> <jorgen.stenar...@bostream.nu> wrote: >>> 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 >>> >> _______________________________________________ >> Users mailing list >> Users@lists.ironpython.com >> http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > > _______________________________________________ > Users mailing list > Users@lists.ironpython.com > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > >
I installed a German version of Windows in a VM and it behaves the same as CPython 2.7 Python 2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> 3.14 3.14 >>> 3,14 (3, 14) >>> import math >>> math.pi 3.141592653589793 >>> float(repr(float(repr(math.pi)))) 3.141592653589793 >>> ^Z 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 >>> math.pi 3.141592653589793 >>> float(repr(float(repr(math.pi)))) 3.141592653589793 >>> ^Z -- slide-o-blog http://slide-o-blog.blogspot.com/ _______________________________________________ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com