(self)
| 1575 | self.other) |
| 1576 | |
| 1577 | def test_difference(self): |
| 1578 | self.assertRaises(TypeError, lambda: self.set - self.other) |
| 1579 | self.assertRaises(TypeError, lambda: self.other - self.set) |
| 1580 | if self.otherIsIterable: |
| 1581 | self.set.difference(self.other) |
| 1582 | else: |
| 1583 | self.assertRaises(TypeError, self.set.difference, self.other) |
| 1584 | |
| 1585 | #------------------------------------------------------------------------------ |
| 1586 |
nothing calls this directly
no test coverage detected