From: Fred Drake Date: Fri, 18 May 2001 21:50:02 +0000 (+0000) Subject: Update a comment. X-Git-Tag: v2.2a3~1749 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acb117eb111f4f6d0f6e7942357e7c3afe6b70f7;p=thirdparty%2FPython%2Fcpython.git Update a comment. --- diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index befde746316a..20ec9a4649ac 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py @@ -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]: