Kaydet (Commit) acb117eb authored tarafından Fred Drake's avatar Fred Drake

Update a comment.

üst 97656a1c
......@@ -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]:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment