diff options
author | Raymond Hettinger <python@rcn.com> | 2003-11-21 18:36:54 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-11-21 18:36:54 (GMT) |
commit | 19c2d77842290af9b5f470c1eea2a71d1f77c9fe (patch) | |
tree | b803a0c96878f6bbef74c8f306df3e950f63da62 /Lib/test | |
parent | 3fbec701cae361de6beca55bc926e0540635f165 (diff) | |
download | cpython-19c2d77842290af9b5f470c1eea2a71d1f77c9fe.zip cpython-19c2d77842290af9b5f470c1eea2a71d1f77c9fe.tar.gz cpython-19c2d77842290af9b5f470c1eea2a71d1f77c9fe.tar.bz2 |
Allow temporary hashability for the __contains__ test.
(Requested by Alex Martelli.)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_set.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py index c33461d..3203d51 100644 --- a/Lib/test/test_set.py +++ b/Lib/test/test_set.py @@ -35,6 +35,8 @@ class TestJointOps(unittest.TestCase): for c in self.letters: self.assertEqual(c in self.s, c in self.d) self.assertRaises(TypeError, self.s.__contains__, [[]]) + s = self.thetype([frozenset(self.letters)]) + self.assert_(self.thetype(self.letters) in s) def test_copy(self): dup = self.s.copy() |