summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hash.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-05-18 21:50:02 (GMT)
committerFred Drake <fdrake@acm.org>2001-05-18 21:50:02 (GMT)
commitacb117eb111f4f6d0f6e7942357e7c3afe6b70f7 (patch)
treed150a512787eda243f0389317bf324933a1ec8c4 /Lib/test/test_hash.py
parent97656a1c823706c2ee5d0b9e3d6d7be0c0550d9f (diff)
downloadcpython-acb117eb111f4f6d0f6e7942357e7c3afe6b70f7.zip
cpython-acb117eb111f4f6d0f6e7942357e7c3afe6b70f7.tar.gz
cpython-acb117eb111f4f6d0f6e7942357e7c3afe6b70f7.tar.bz2
Update a comment.
Diffstat (limited to 'Lib/test/test_hash.py')
-rw-r--r--Lib/test/test_hash.py4
1 files changed, 2 insertions, 2 deletions
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 @@ 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]: