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 christian.heimes
Recipients christian.heimes, hongqn, rhettinger
Date 2013-10-11.05:06:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381467991.6.0.551490763649.issue19224@psf.upfronthosting.co.za>
In-reply-to
Content
How about

>>> (78 << 24) + (111 << 16) + (110 << 8) + 101
1315925605

The output of hash() is not guaranteed to be consistent between processes. The outcome depends on the hash randomization key, architecture, platform, Python version and perhaps other flags. 32bit builds of Python generated different hash() values than 64bit. The value might depend on endianess, too. (Not sure about that)
History
Date User Action Args
2013-10-11 05:06:31christian.heimessetrecipients: + christian.heimes, rhettinger, hongqn
2013-10-11 05:06:31christian.heimessetmessageid: <1381467991.6.0.551490763649.issue19224@psf.upfronthosting.co.za>
2013-10-11 05:06:31christian.heimeslinkissue19224 messages
2013-10-11 05:06:31christian.heimescreate