(self)
| 1998 | self.check_set_op_does_not_crash(lambda a, b: a | b) |
| 1999 | |
| 2000 | def test_sub_with_mutation(self): |
| 2001 | self.check_set_op_does_not_crash(lambda a, b: a - b) |
| 2002 | |
| 2003 | def test_xor_with_mutation(self): |
| 2004 | self.check_set_op_does_not_crash(lambda a, b: a ^ b) |
nothing calls this directly
no test coverage detected