summaryrefslogtreecommitdiff
path: root/Lib/test/test_sets.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-03-02 00:31:23 +0000
committerTim Peters <tim.peters@gmail.com>2003-03-02 00:31:23 +0000
commitb7bfe4bea458a4a934ac12214e1a403eca1ce7ac (patch)
treefaaa158543a1553f9a16376938c44a1203632dea /Lib/test/test_sets.py
parent44f14b039949005ecc93fd8294933c84fab6f374 (diff)
downloadcpython-git-b7bfe4bea458a4a934ac12214e1a403eca1ce7ac.tar.gz
Typo repairs in new code.
Diffstat (limited to 'Lib/test/test_sets.py')
-rw-r--r--Lib/test/test_sets.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py
index d8b7f3ff36..f1bd3b8ac2 100644
--- a/Lib/test/test_sets.py
+++ b/Lib/test/test_sets.py
@@ -235,7 +235,7 @@ class TestBinaryOps(unittest.TestCase):
self.assertRaises(TypeError, cmp, a, b)
# You can view this as a buglet: cmp(a, a) does not raise TypeError,
- # because __eq__ is tried before __cmp__, and a.__eq__(a) returns,
+ # because __eq__ is tried before __cmp__, and a.__eq__(a) returns True,
# which Python thinks is good enough to synthesize a cmp() result
# without calling __cmp__.
self.assertEqual(cmp(a, a), 0)
@@ -492,13 +492,17 @@ class TestOnlySetsInBinaryOps(unittest.TestCase):
self.assertEqual(self.other != self.set, True)
self.assertEqual(self.set != self.other, True)
- def test_ge_gt_lt_le(self):
- # Unlike the others, this is testing that == and != *are* allowed.
+ def test_ge_gt_le_lt(self):
self.assertRaises(TypeError, lambda: self.set < self.other)
self.assertRaises(TypeError, lambda: self.set <= self.other)
self.assertRaises(TypeError, lambda: self.set > self.other)
self.assertRaises(TypeError, lambda: self.set >= self.other)
+ self.assertRaises(TypeError, lambda: self.other < self.set)
+ self.assertRaises(TypeError, lambda: self.other <= self.set)
+ self.assertRaises(TypeError, lambda: self.other > self.set)
+ self.assertRaises(TypeError, lambda: self.other >= self.set)
+
def test_union_update(self):
try:
self.set |= self.other