commit | 887b3f2625404f3835d47a63ae7e0ac4ee638cb6 | [log] [tgz] |
---|---|---|
author | Guilherme Polo <ggpolo@gmail.com> | Sat Feb 07 00:45:10 2009 +0000 |
committer | Guilherme Polo <ggpolo@gmail.com> | Sat Feb 07 00:45:10 2009 +0000 |
tree | 73b5d0dba21a7fbe33a62a608a818351a55be574 | |
parent | 48494d0d9f9e37b76c6b67cbd64081edfdac7f33 [diff] [blame] |
long -> int
diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index 4cbbe78..5babc5a 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py
@@ -33,7 +33,7 @@ # 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))