]> granicus.if.org Git - python/commitdiff
long -> int
authorGuilherme Polo <ggpolo@gmail.com>
Sat, 7 Feb 2009 00:45:10 +0000 (00:45 +0000)
committerGuilherme Polo <ggpolo@gmail.com>
Sat, 7 Feb 2009 00:45:10 +0000 (00:45 +0000)
Lib/test/test_hash.py

index 4cbbe78424ed360a7b80c161f1031474ffdbfa09..5babc5a9a497ab0461ab4882965aa01272734252 100644 (file)
@@ -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))