Message6781

Author AnthonySmith
Recipients AnthonySmith
Date 2012-02-15.14:33:45
SpamBayes Score 3.4395822e-07
Marked as misclassified No
Message-id <1329316426.2.0.730184634992.issue1840@psf.upfronthosting.co.za>
In-reply-to
Content
Desired behaviour in C Python 2.4 (or 2.5)

Python 2.4.3 (#1, Sep 21 2011, 19:55:41) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-51)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> nan = float("nan")
>>> 0<nan
False
>>> 0>nan
False

Broken behaviour on Jython 2.5.2 on Mac


Jython 2.5.2 (Release_2_5_2:7206, Mar 2 2011, 23:12:06) 
[Java HotSpot(TM) 64-Bit Server VM (Apple Inc.)] on java1.6.0_29
Type "help", "copyright", "credits" or "license" for more information.
>>> nan = float("nan")
>>> 0<nan
False
>>> 0>nan
True
History
Date User Action Args
2012-02-15 14:33:46AnthonySmithsetmessageid: <1329316426.2.0.730184634992.issue1840@psf.upfronthosting.co.za>
2012-02-15 14:33:46AnthonySmithsetrecipients: + AnthonySmith
2012-02-15 14:33:46AnthonySmithlinkissue1840 messages
2012-02-15 14:33:45AnthonySmithcreate