[Python-checkins] r69392 - python/branches/py3k/Lib/test/test_hash.py

guilherme.polo python-checkins at python.org
Sat Feb 7 01:45:10 CET 2009


Author: guilherme.polo
Date: Sat Feb  7 01:45:10 2009
New Revision: 69392

Log:
long -> int

Modified:
   python/branches/py3k/Lib/test/test_hash.py

Modified: python/branches/py3k/Lib/test/test_hash.py
==============================================================================
--- python/branches/py3k/Lib/test/test_hash.py	(original)
+++ python/branches/py3k/Lib/test/test_hash.py	Sat Feb  7 01:45:10 2009
@@ -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))


More information about the Python-checkins mailing list