Re: [Python-Dev] [Python-checkins] commit of r41497 -python/trunk/Lib/test

2005-12-17 Thread Neal Norwitz
On 11/21/05, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > Neal Norwitz wrote: > > > I just checked in the modification below. I'm not sure if this > > behaviour is on purpose or by accident. [ /f shows diff on linux and windows ] I checked in a fix for this so float('0x3') should not work on any p

Re: [Python-Dev] [Python-checkins] commit of r41497 -python/trunk/Lib/test

2005-11-21 Thread Fredrik Lundh
Neal Norwitz wrote: > I just checked in the modification below. I'm not sure if this > behaviour is on purpose or by accident. Python 2.4 on Linux: >>> float(" 0x3.1 ") 3.0625 Python 2.4 on Windows: >>> float(" 0x3.1 ") Traceback (most recent call last): File "", line 1, in ? ValueError