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 eric.smith, jdemeyer, mark.dickinson, rhettinger, sir-sigurd, tim.peters
Date 2018-10-02.19:37:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1538509042.72.0.545547206417.issue34751@psf.upfronthosting.co.za>
In-reply-to
Content
> If we, e.g., tested tuples of little floats instead ...

Speaking of which:

>>> from itertools import product
>>> len(set(map(hash, product([0.5, 0.25], repeat=20))))
32

32 hash codes out of 1048576 distinct two-tuples isn't exactly confidence-inspiring either ;-)  No scheme that only "propagates to the left" is going to help that much, because the variation in those hashes is all in the high-order bits.
History
Date User Action Args
2018-10-02 19:37:22tim.peterssetrecipients: + tim.peters, rhettinger, mark.dickinson, eric.smith, jdemeyer, sir-sigurd
2018-10-02 19:37:22tim.peterssetmessageid: <1538509042.72.0.545547206417.issue34751@psf.upfronthosting.co.za>
2018-10-02 19:37:22tim.peterslinkissue34751 messages
2018-10-02 19:37:22tim.peterscreate