On Thu, 10 Oct 2013 17:48:16 +0000, Neil Cerutti wrote:

> >>> 5.0 == abs(3 + 4j)
>  False

Did you maybe accidentally rebind abs? If not, what version of Python are 
you using?


[steve@ando ~]$ for a in 2.4 2.5 2.6 2.7 3.2 3.3 ; do
> python$a -c "print( 5.0 == abs(3 + 4j) )" ;
> done
True
True
True
True
True
True



-- 
Steven
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to