(self)
| 87 | |
| 88 | # ------------- low-level helpers -------------------------------------- # |
| 89 | def _cur_line(self) -> str: |
| 90 | if self.index >= len(self.lines): |
| 91 | raise DiffError("Unexpected end of input while parsing patch") |
| 92 | return self.lines[self.index] |
| 93 | |
| 94 | @staticmethod |
| 95 | def _norm(line: str) -> str: |
no test coverage detected