summaryrefslogtreecommitdiff
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-22 03:55:23 +0000
committerRaymond Hettinger <python@rcn.com>2003-11-22 03:55:23 +0000
commitc7280fac4476a6bc5f95b14b10bbe3e67d99e46a (patch)
treee9ec6d96c88ced961ff45f0265b7c8acde97cd60 /Lib/test/test_set.py
parente4fa40421ff14cfdf769b531a80a3a15f8807842 (diff)
downloadcpython-c7280fac4476a6bc5f95b14b10bbe3e67d99e46a.tar.gz
Extend temporary hashability to remove() and discard().
Brings the functionality back in line with sets.py.
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r--Lib/test/test_set.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index 3203d51693..85f87f7d12 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -182,12 +182,22 @@ class TestSet(TestJointOps):
self.assert_('a' not in self.s)
self.assertRaises(KeyError, self.s.remove, 'Q')
self.assertRaises(TypeError, self.s.remove, [])
+ s = self.thetype([frozenset(self.word)])
+ self.assert_(self.thetype(self.word) in s)
+ s.remove(self.thetype(self.word))
+ self.assert_(self.thetype(self.word) not in s)
+ self.assertRaises(KeyError, self.s.remove, self.thetype(self.word))
def test_discard(self):
self.s.discard('a')
self.assert_('a' not in self.s)
self.s.discard('Q')
self.assertRaises(TypeError, self.s.discard, [])
+ s = self.thetype([frozenset(self.word)])
+ self.assert_(self.thetype(self.word) in s)
+ s.discard(self.thetype(self.word))
+ self.assert_(self.thetype(self.word) not in s)
+ s.discard(self.thetype(self.word))
def test_pop(self):
for i in xrange(len(self.s)):