commit | acb117eb111f4f6d0f6e7942357e7c3afe6b70f7 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Fri May 18 21:50:02 2001 +0000 |
committer | Fred Drake <fdrake@acm.org> | Fri May 18 21:50:02 2001 +0000 |
tree | d150a512787eda243f0389317bf324933a1ec8c4 | |
parent | 97656a1c823706c2ee5d0b9e3d6d7be0c0550d9f [diff] [blame] |
Update a comment.
diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index befde74..20ec9a4 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py
@@ -9,8 +9,8 @@ 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]: