diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-02-07 00:45:10 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-02-07 00:45:10 (GMT) |
commit | 887b3f2625404f3835d47a63ae7e0ac4ee638cb6 (patch) | |
tree | 73b5d0dba21a7fbe33a62a608a818351a55be574 /Lib/test/test_hash.py | |
parent | 48494d0d9f9e37b76c6b67cbd64081edfdac7f33 (diff) | |
download | cpython-887b3f2625404f3835d47a63ae7e0ac4ee638cb6.zip cpython-887b3f2625404f3835d47a63ae7e0ac4ee638cb6.tar.gz cpython-887b3f2625404f3835d47a63ae7e0ac4ee638cb6.tar.bz2 |
long -> int
Diffstat (limited to 'Lib/test/test_hash.py')
-rw-r--r-- | Lib/test/test_hash.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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)) |