summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-12-24 00:52:54 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-12-24 00:52:54 (GMT)
commit6518f5e78060f0d1cbc44b3034427fe0300fb062 (patch)
treec5f343a05700f3fe055a9aac884aed992d26c412 /Lib
parent83961245b4db5d50a533e6f20d9472175d18d5e3 (diff)
downloadcpython-6518f5e78060f0d1cbc44b3034427fe0300fb062.zip
cpython-6518f5e78060f0d1cbc44b3034427fe0300fb062.tar.gz
cpython-6518f5e78060f0d1cbc44b3034427fe0300fb062.tar.bz2
Fix docs and comment for r87454.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/unittest/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index 68e53a5..ad5fe61 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -1021,7 +1021,7 @@ class TestCase(object):
actual = collections.Counter(actual_seq)
expected = collections.Counter(expected_seq)
except TypeError:
- # Unsortable items (example: set(), complex(), ...)
+ # Handle case with unhashable elements
missing, unexpected = unorderable_list_difference(expected_seq, actual_seq)
else:
if actual == expected: