From: Guilherme Polo Date: Sat, 7 Feb 2009 00:45:10 +0000 (+0000) Subject: long -> int X-Git-Tag: v3.1a1~253 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=887b3f2625404f3835d47a63ae7e0ac4ee638cb6;p=thirdparty%2FPython%2Fcpython.git long -> int --- 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))