(self)
| 199 | self.assertRaises(TypeError, s.__init__, 1); |
| 200 | |
| 201 | def test_constructor_identity(self): |
| 202 | s = WeakSet(self.items) |
| 203 | t = WeakSet(s) |
| 204 | self.assertNotEqual(id(s), id(t)) |
| 205 | |
| 206 | def test_hash(self): |
| 207 | self.assertRaises(TypeError, hash, self.s) |
nothing calls this directly
no test coverage detected