(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 |
| 365 | def __ge__(self, other): |
| 366 | self.log_operation('V.__ge__') |
| 367 | return NotImplemented |
nothing calls this directly
no test coverage detected