(self, path: str, start: Optional[str] = None)
| 203 | return posixpath.relpath(self.abspath(path), start=self.abspath(start)) |
| 204 | |
| 205 | def relparts(self, path: str, start: Optional[str] = None) -> tuple[str, ...]: |
| 206 | return self.parts(self.relpath(path, start=start)) |
| 207 | |
| 208 | @functools.cached_property |
| 209 | def repo(self): |
no test coverage detected