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 vstinner
Recipients christian.heimes, hongqn, pitrou, rhettinger, tim.peters, vstinner
Date 2013-10-11.09:19:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381483155.99.0.278409079949.issue19224@psf.upfronthosting.co.za>
In-reply-to
Content
In the same Python version, hash(None) always give me the same value. I cannot reproduced your issue on Linux, I tested Python 2.7, 3.3 and 3.4.

$ python2.7 -c "print(hash(None))"
17171842026
$ python2.7 -c "print(hash(None))"
17171842026
$ python2.7 -c "print(hash(None))"
17171842026

$ python3.3 -c "print(hash(None))"
17171873465
$ python3.3 -c "print(hash(None))"
17171873465
$ python3.3 -c "print(hash(None))"
17171873465

$ python3.4 -c "print(hash(None))"
588812
$ python3.4 -c "print(hash(None))"
588812
$ python3.4 -c "print(hash(None))"
588812
History
Date User Action Args
2013-10-11 09:19:16vstinnersetrecipients: + vstinner, tim.peters, rhettinger, pitrou, christian.heimes, hongqn
2013-10-11 09:19:15vstinnersetmessageid: <1381483155.99.0.278409079949.issue19224@psf.upfronthosting.co.za>
2013-10-11 09:19:15vstinnerlinkissue19224 messages
2013-10-11 09:19:15vstinnercreate