(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 |
| 356 | |
| 357 | class V(OperationLogger): |
| 358 | """Virtual subclass of B""" |
nothing calls this directly
no test coverage detected