]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Merged revisions 69433,69436 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sun, 8 Feb 2009 14:56:08 +0000 (14:56 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 8 Feb 2009 14:56:08 +0000 (14:56 +0000)
commitdd0989e7df0fa92a612dafd1180519a5d573b83a
tree63c06b8d84c30219b564b377f223375bc9f1e8ba
parent1e2ea829263cdddd5c400c96e49a52a815e0e99b
Merged revisions 69433,69436 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69433 | mark.dickinson | 2009-02-08 13:58:10 +0000 (Sun, 08 Feb 2009) | 2 lines

  Remove redundant assignment in _PyObject_LengthHint
........
  r69436 | mark.dickinson | 2009-02-08 14:42:28 +0000 (Sun, 08 Feb 2009) | 10 lines

  Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bit
  platforms.  The previous code was fragile, depending on the twin
  accidents that:

    (1) in C, casting the double value 2.**63 to long returns the integer
        value -2**63, and
    (2) in Python, hash(-2**63) == hash(2**63).

  There's already a test for this in test_hash.
........
Objects/abstract.c
Objects/object.c