(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 |
| 342 | def __ge__(self, other): |
| 343 | self.log_operation('B.__ge__') |
| 344 | return NotImplemented |
nothing calls this directly
no test coverage detected