(self)
| 1551 | self.other) |
| 1552 | |
| 1553 | def test_sym_difference(self): |
| 1554 | self.assertRaises(TypeError, lambda: self.set ^ self.other) |
| 1555 | self.assertRaises(TypeError, lambda: self.other ^ self.set) |
| 1556 | if self.otherIsIterable: |
| 1557 | self.set.symmetric_difference(self.other) |
| 1558 | else: |
| 1559 | self.assertRaises(TypeError, self.set.symmetric_difference, self.other) |
| 1560 | |
| 1561 | def test_difference_update_operator(self): |
| 1562 | try: |
nothing calls this directly
no test coverage detected