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 tim.peters
Recipients
Date 2004-05-16.21:09:07
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

Noting that

    (X, (Y, Z))

and

    (Y, (X, Z))

hash to the same thing today too (module -1 endcases).  For 
example,

>>> hash((3, (4, 8))) == hash((4, (3, 8)))
True
>>> 
History
Date User Action Args
2007-08-23 14:21:13adminlinkissue942952 messages
2007-08-23 14:21:13admincreate