[Python-checkins] r69393 - in python/branches/release30-maint: Lib/test/test_hash.py

guilherme.polo python-checkins at python.org
Sat Feb 7 01:46:52 CET 2009


Author: guilherme.polo
Date: Sat Feb  7 01:46:52 2009
New Revision: 69393

Log:
Merged revisions 69392 via svnmerge from 
svn+ssh://pythondev/python/branches/py3k

........
  r69392 | guilherme.polo | 2009-02-06 22:45:10 -0200 (Fri, 06 Feb 2009) | 1 line
  
  long -> int
........


Modified:
   python/branches/release30-maint/   (props changed)
   python/branches/release30-maint/Lib/test/test_hash.py

Modified: python/branches/release30-maint/Lib/test/test_hash.py
==============================================================================
--- python/branches/release30-maint/Lib/test/test_hash.py	(original)
+++ python/branches/release30-maint/Lib/test/test_hash.py	Sat Feb  7 01:46:52 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