(self, other)
| 345 | |
| 346 | class C(B): |
| 347 | def __eq__(self, other): |
| 348 | self.log_operation('C.__eq__') |
| 349 | return NotImplemented |
| 350 | def __le__(self, other): |
| 351 | self.log_operation('C.__le__') |
| 352 | return NotImplemented |
nothing calls this directly
no test coverage detected