[Python-checkins] CVS: python/dist/src/Lib/test test_hash.py,1.3,1.4

Fred L. Drake fdrake@users.sourceforge.net
Fri, 18 May 2001 14:50:04 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv18913

Modified Files:
	test_hash.py 
Log Message:

Update a comment.


Index: test_hash.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_hash.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** test_hash.py	2001/05/18 21:45:35	1.3
--- test_hash.py	2001/05/18 21:50:02	1.4
***************
*** 10,15 ****
  
      def same_hash(self, *objlist):
!         # hash each object given an raise TestFailed if
!         # the hash values are not all the same
          hashed = map(hash, objlist)
          for h in hashed[1:]:
--- 10,15 ----
  
      def same_hash(self, *objlist):
!         # Hash each object given and fail if
!         # the hash values are not all the same.
          hashed = map(hash, objlist)
          for h in hashed[1:]: