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 terry.reedy
Recipients christian.heimes, jaysinh.shukla, rhettinger, terry.reedy
Date 2016-06-23.18:36:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1466706995.11.0.393515805656.issue20674@psf.upfronthosting.co.za>
In-reply-to
Content
Completely remove all reference to strings as it is normally completely wrong.  In three runs of
   list(map(hash, ("namea", "nameb", "namec", "named")))
I get
[-7801965690653662103, -712276634514874737, 4394438508544812081, -6975951345912708912]
[-1171799829, 419385606, 1995488749, 1433346153]
[551304887, -285234584, -553876274, -279423320]

Rewrite for ints only.

I am willing to apply, but cannot patch 3.4, so Raymond, if you want that, you will have to do it.
History
Date User Action Args
2016-06-23 18:36:35terry.reedysetrecipients: + terry.reedy, rhettinger, christian.heimes, jaysinh.shukla
2016-06-23 18:36:35terry.reedysetmessageid: <1466706995.11.0.393515805656.issue20674@psf.upfronthosting.co.za>
2016-06-23 18:36:35terry.reedylinkissue20674 messages
2016-06-23 18:36:34terry.reedycreate