(self, other)
| 357 | class V(OperationLogger): |
| 358 | """Virtual subclass of B""" |
| 359 | def __eq__(self, other): |
| 360 | self.log_operation('V.__eq__') |
| 361 | return NotImplemented |
| 362 | def __le__(self, other): |
| 363 | self.log_operation('V.__le__') |
| 364 | return NotImplemented |
nothing calls this directly
no test coverage detected