(self, other: object)
| 512 | return hash(tuple(self)) |
| 513 | |
| 514 | def __lt__(self, other: object) -> bool: |
| 515 | if not isinstance(other, (CaptureResult, tuple)): |
| 516 | return NotImplemented |
| 517 | return tuple(self) < tuple(other) |
| 518 | |
| 519 | def __repr__(self) -> str: |
| 520 | return f"CaptureResult(out={self.out!r}, err={self.err!r})" |
nothing calls this directly
no outgoing calls
no test coverage detected