Terry Reedy wrote:
> "Felipe Almeida Lessa" <[EMAIL PROTECTED]> wrote in message 
> news:[EMAIL PROTECTED]
>> This works everywhere:
>>
>> nan = float('nan')
> 
> Not.
> 
>>>> nan = float('nan')
> 
> Traceback (most recent call last):
>   File "<pyshell#4>", line 1, in -toplevel-
>     nan = float('nan')
> ValueError: invalid literal for float(): nan
> 
> Above is Windows, which requires something else.

I think he meant:

 >>> float("NaN")
nan

That's Python 2.4.1 on Mac OS X.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to