Message70387
My wild uneducated guess is that it's due to a nan-like value being in
the globals, and comparing unequal to itself:
>>> d = {1: float('nan')}
>>> d
{1: nan}
>>> d == d
False
>>> import decimal
>>> nan = decimal.Decimal('nan')
>>> d = {1: nan}
>>> d == d
False |
|
| Date |
User |
Action |
Args |
| 2008-07-29 12:42:38 | pitrou | set | recipients:
+ pitrou, benjamin.peterson |
| 2008-07-29 12:42:38 | pitrou | set | messageid: <[email protected]> |
| 2008-07-29 12:42:37 | pitrou | link | issue3462 messages |
| 2008-07-29 12:42:35 | pitrou | create | |
|