(self)
| 1545 | self.other) |
| 1546 | |
| 1547 | def test_sym_difference(self): |
| 1548 | self.assertRaises(TypeError, lambda: self.set ^ self.other) |
| 1549 | self.assertRaises(TypeError, lambda: self.other ^ self.set) |
| 1550 | if self.otherIsIterable: |
| 1551 | self.set.symmetric_difference(self.other) |
| 1552 | else: |
| 1553 | self.assertRaises(TypeError, self.set.symmetric_difference, self.other) |
| 1554 | |
| 1555 | def test_difference_update_operator(self): |
| 1556 | try: |
nothing calls this directly
no test coverage detected