(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 |
| 345 | |
| 346 | class C(B): |
| 347 | def __eq__(self, other): |
nothing calls this directly
no test coverage detected