(self)
| 1569 | self.other) |
| 1570 | |
| 1571 | def test_difference(self): |
| 1572 | self.assertRaises(TypeError, lambda: self.set - self.other) |
| 1573 | self.assertRaises(TypeError, lambda: self.other - self.set) |
| 1574 | if self.otherIsIterable: |
| 1575 | self.set.difference(self.other) |
| 1576 | else: |
| 1577 | self.assertRaises(TypeError, self.set.difference, self.other) |
| 1578 | |
| 1579 | #------------------------------------------------------------------------------ |
| 1580 |
nothing calls this directly
no test coverage detected