Message58661
The patch unifies the creation and representation of "inf", "-inf" and
"nan" on all platforms.
>>> float("inf")
inf
>>> float("-inf")
-inf
>>> float("nan")
nan
>>> repr(1e300 * 1e300)
'inf'
>>> repr(1e300 * 1e300 * 0)
'nan'
>>> repr(1e300 * 1e300 * -1)
'-inf' |
|
| Date |
User |
Action |
Args |
| 2007-12-15 10:23:25 | christian.heimes | set | spambayes_score: 0.0499699 -> 0.0499699 recipients:
+ christian.heimes |
| 2007-12-15 10:23:24 | christian.heimes | set | spambayes_score: 0.0499699 -> 0.0499699 messageid: <1197714204.6.0.358180315709.issue1635@psf.upfronthosting.co.za> |
| 2007-12-15 10:23:24 | christian.heimes | link | issue1635 messages |
| 2007-12-15 10:23:24 | christian.heimes | create | |
|