(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 |
| 331 | def __ge__(self, other): |
| 332 | self.log_operation('A.__ge__') |
| 333 | return NotImplemented |
no test coverage detected