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 pitrou
Recipients benjamin.peterson, pitrou
Date 2008-07-29.12:42:35
SpamBayes Score 0.007154609
Marked as misclassified No
Message-id <1217335358.52.0.257105613293.issue3462@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2008-07-29 12:42:38pitrousetrecipients: + pitrou, benjamin.peterson
2008-07-29 12:42:38pitrousetmessageid: <1217335358.52.0.257105613293.issue3462@psf.upfronthosting.co.za>
2008-07-29 12:42:37pitroulinkissue3462 messages
2008-07-29 12:42:35pitroucreate