(self)
| 1527 | self.other) |
| 1528 | |
| 1529 | def test_intersection(self): |
| 1530 | self.assertRaises(TypeError, lambda: self.set & self.other) |
| 1531 | self.assertRaises(TypeError, lambda: self.other & self.set) |
| 1532 | if self.otherIsIterable: |
| 1533 | self.set.intersection(self.other) |
| 1534 | else: |
| 1535 | self.assertRaises(TypeError, self.set.intersection, self.other) |
| 1536 | |
| 1537 | def test_sym_difference_update_operator(self): |
| 1538 | try: |
nothing calls this directly
no test coverage detected