(self, other)
| 334 | |
| 335 | class B(OperationLogger, metaclass=ABCMeta): |
| 336 | def __eq__(self, other): |
| 337 | self.log_operation('B.__eq__') |
| 338 | return NotImplemented |
| 339 | def __le__(self, other): |
| 340 | self.log_operation('B.__le__') |
| 341 | return NotImplemented |
nothing calls this directly
no test coverage detected