(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 |
| 353 | def __ge__(self, other): |
| 354 | self.log_operation('C.__ge__') |
| 355 | return NotImplemented |
nothing calls this directly
no test coverage detected