Update a comment.

This commit is contained in:
Fred Drake 2001-05-18 21:50:02 +00:00
parent 97656a1c82
commit acb117eb11
1 changed files with 2 additions and 2 deletions

View File

@ -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]: