This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nmm
Recipients
Date 2006-06-29.16:19:46
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Methinks this is a bit off :-)  True should be False.


Python 2.5b1 (trunk:47059, Jun 29 2006, 14:26:46)
[GCC 4.1.0 (SUSE Linux)] on linux2
>>> import decimal
>>> d = decimal.Decimal
>>> inf = d("inf")
>>> nan = d("nan")
>>> nan > inf
True
>>> nan < inf
False
>>> inf > nan
True
>>> inf < nan
False
b
History
Date User Action Args
2007-08-23 14:40:55adminlinkissue1514428 messages
2007-08-23 14:40:55admincreate