From 2e3a84bd62c4ad1cc98fbb3912345beb94ec3316 Mon Sep 17 00:00:00 2001 From: Guilherme Polo Date: Sat, 7 Feb 2009 00:46:52 +0000 Subject: [PATCH] Merged revisions 69392 via svnmerge from svn+ssh://pythondev/python/branches/py3k ........ r69392 | guilherme.polo | 2009-02-06 22:45:10 -0200 (Fri, 06 Feb 2009) | 1 line long -> int ........ --- Lib/test/test_hash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index 4cbbe78424ed..5babc5a9a497 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py @@ -33,7 +33,7 @@ class HashEqualityTestCase(unittest.TestCase): # for 64-bit platforms self.same_hash(int(2**31), float(2**31)) self.same_hash(int(-2**63), float(-2**63)) - self.same_hash(long(2**63), float(2**63)) + self.same_hash(int(2**63), float(2**63)) def test_coerced_floats(self): self.same_hash(int(1.23e300), float(1.23e300)) -- 2.47.3