Message28971
| 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:55 | admin | link | issue1514428 messages |
| 2007年08月23日 14:40:55 | admin | create |
|