(self, other)
| 323 | |
| 324 | class A(OperationLogger): |
| 325 | def __eq__(self, other): |
| 326 | self.log_operation('A.__eq__') |
| 327 | return NotImplemented |
| 328 | def __le__(self, other): |
| 329 | self.log_operation('A.__le__') |
| 330 | return NotImplemented |
no test coverage detected