(self)
| 1974 | class TestBinaryOpsMutating(TestOperationsMutating): |
| 1975 | |
| 1976 | def test_eq_with_mutation(self): |
| 1977 | self.check_set_op_does_not_crash(lambda a, b: a == b) |
| 1978 | |
| 1979 | def test_ne_with_mutation(self): |
| 1980 | self.check_set_op_does_not_crash(lambda a, b: a != b) |
nothing calls this directly
no test coverage detected