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 christian.heimes, hongqn, pitrou, rhettinger, tim.peters
Date 2013-10-11.09:09:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381482576.32.0.16316592263.issue19224@psf.upfronthosting.co.za>
In-reply-to
Content
Is this something we actually want to support officially? Many other types have non-repeatable hashes, e.g.:

$ PYTHONHASHSEED=1 python3 -c "print(hash((lambda: 0)))"
8771754605115
$ PYTHONHASHSEED=1 python3 -c "print(hash((lambda: 0)))"
8791504743739
$ PYTHONHASHSEED=1 python3 -c "print(hash((lambda: 0)))"
8788491320379
$ PYTHONHASHSEED=1 python3 -c "print(hash((lambda: 0)))"
8792628055611
History
Date User Action Args
2013-10-11 09:09:36pitrousetrecipients: + pitrou, tim.peters, rhettinger, christian.heimes, hongqn
2013-10-11 09:09:36pitrousetmessageid: <1381482576.32.0.16316592263.issue19224@psf.upfronthosting.co.za>
2013-10-11 09:09:36pitroulinkissue19224 messages
2013-10-11 09:09:36pitroucreate