summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-11 00:43:27 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-04-11 00:43:27 (GMT)
commit6902b44406ba2940dd7f34b7ec77e2ea13ff2e66 (patch)
tree59d904459d6395aeaca49825ab6f9ba8931f42b0 /Lib/test/test_set.py
parent16ed521dd707a889bb8a92a740e48da51a1c2c53 (diff)
downloadcpython-6902b44406ba2940dd7f34b7ec77e2ea13ff2e66.zip
cpython-6902b44406ba2940dd7f34b7ec77e2ea13ff2e66.tar.gz
cpython-6902b44406ba2940dd7f34b7ec77e2ea13ff2e66.tar.bz2
Try to repair more new buildbot failures in "x86 OpenBSD trunk", due
to that id() can now return a Python long on a 32-bit box that allocates addresses "with the sign bit set". test_set.py test_subclass_with_custom_hash(): it's never been portably legal for a __hash__() method to return id(self), but on 32-bit boxes that never caused a problem before it became possible for id() to return a Python long. Changed __hash__ here to return a Python int regardless of platform. test_descr.py specials(): vereq(hash(c1), id(c1)) has never been a correct test -- just removed it (hash() is always a Python int; id() may be a Python long).
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r--Lib/test/test_set.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index 1a2cdda..0268be2 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -224,7 +224,7 @@ class TestJointOps(unittest.TestCase):
# Bug #1257731
class H(self.thetype):
def __hash__(self):
- return id(self)
+ return int(id(self) & 0x7fffffff)
s=H()
f=set()
f.add(s)