]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Update a comment.
authorFred Drake <fdrake@acm.org>
Fri, 18 May 2001 21:50:02 +0000 (21:50 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 18 May 2001 21:50:02 +0000 (21:50 +0000)
Lib/test/test_hash.py

index befde746316a974223d12489817ea51978eec7fe..20ec9a4649acd1d3f845ef01ccc859e825aad221 100644 (file)
@@ -9,8 +9,8 @@ import unittest
 class HashEqualityTestCase(unittest.TestCase):
 
     def same_hash(self, *objlist):
-        # hash each object given an raise TestFailed if
-        # the hash values are not all the same
+        # Hash each object given and fail if
+        # the hash values are not all the same.
         hashed = map(hash, objlist)
         for h in hashed[1:]:
             if h != hashed[0]: