mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	svn+ssh://pythondev@svn.python.org/python/trunk ........ r58204 | georg.brandl | 2007-09-19 08:37:19 +0200 (Wed, 19 Sep 2007) | 2 lines Fix #1169: remove docstrings in functions for -OO. ........ r58206 | sean.reifschneider | 2007-09-19 09:52:56 +0200 (Wed, 19 Sep 2007) | 2 lines issue1177: Ported Facundo's from urllib2 to urllib, accepting 2xx responses. ........ r58207 | facundo.batista | 2007-09-19 16:02:03 +0200 (Wed, 19 Sep 2007) | 3 lines Annotated the correction to urllib.py, issue #1177 ........ r58208 | facundo.batista | 2007-09-19 17:10:06 +0200 (Wed, 19 Sep 2007) | 7 lines Issue #1772851. Alters long.__hash__ from being *almost* completely predictable to being completely predictable. The value of hash(n) is unchanged for any n that's small enough to be representable as an int, and also unchanged for the vast majority of long integers n of reasonable size. ........ r58209 | thomas.wouters | 2007-09-19 19:27:29 +0200 (Wed, 19 Sep 2007) | 4 lines Fix obvious typo in threaded test. ........ r58210 | thomas.wouters | 2007-09-19 19:27:43 +0200 (Wed, 19 Sep 2007) | 4 lines Whitespace cleanup. ........
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# test the invariant that
 | 
						|
#   iff a==b then hash(a)==hash(b)
 | 
						|
#
 | 
						|
 | 
						|
import unittest
 | 
						|
from test import test_support
 | 
						|
 | 
						|
 | 
						|
class HashEqualityTestCase(unittest.TestCase):
 | 
						|
 | 
						|
    def same_hash(self, *objlist):
 | 
						|
        # Hash each object given and fail if
 | 
						|
        # the hash values are not all the same.
 | 
						|
        hashed = list(map(hash, objlist))
 | 
						|
        for h in hashed[1:]:
 | 
						|
            if h != hashed[0]:
 | 
						|
                self.fail("hashed values differ: %r" % (objlist,))
 | 
						|
 | 
						|
    def test_numeric_literals(self):
 | 
						|
        self.same_hash(1, 1, 1.0, 1.0+0.0j)
 | 
						|
        self.same_hash(0, 0.0, 0.0+0.0j)
 | 
						|
        self.same_hash(-1, -1.0, -1.0+0.0j)
 | 
						|
        self.same_hash(-2, -2.0, -2.0+0.0j)
 | 
						|
 | 
						|
    def test_coerced_integers(self):
 | 
						|
        self.same_hash(int(1), int(1), float(1), complex(1),
 | 
						|
                       int('1'), float('1.0'))
 | 
						|
        self.same_hash(int(-2**31), float(-2**31))
 | 
						|
        self.same_hash(int(1-2**31), float(1-2**31))
 | 
						|
        self.same_hash(int(2**31-1), float(2**31-1))
 | 
						|
        # for 64-bit platforms
 | 
						|
        self.same_hash(int(2**31), float(2**31))
 | 
						|
        self.same_hash(int(-2**63), float(-2**63))
 | 
						|
 | 
						|
    def test_coerced_floats(self):
 | 
						|
        self.same_hash(int(1.23e300), float(1.23e300))
 | 
						|
        self.same_hash(float(0.5), complex(0.5, 0.0))
 | 
						|
 | 
						|
 | 
						|
def test_main():
 | 
						|
    test_support.run_unittest(HashEqualityTestCase)
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    test_main()
 |