Antoine Pitrou <[EMAIL PROTECTED]> added the comment:

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

----------
nosy: +pitrou

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3462>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to