(self, other)
| 329 | self.log_operation('A.__le__') |
| 330 | return NotImplemented |
| 331 | def __ge__(self, other): |
| 332 | self.log_operation('A.__ge__') |
| 333 | return NotImplemented |
| 334 | |
| 335 | class B(OperationLogger, metaclass=ABCMeta): |
| 336 | def __eq__(self, other): |
no test coverage detected