(self, drv, root, tail)
| 269 | return cls.parser.sep.join(tail) |
| 270 | |
| 271 | def _from_parsed_parts(self, drv, root, tail): |
| 272 | path = self._from_parsed_string(self._format_parsed_parts(drv, root, tail)) |
| 273 | path._drv = drv |
| 274 | path._root = root |
| 275 | path._tail_cached = tail |
| 276 | return path |
| 277 | |
| 278 | def _from_parsed_string(self, path_str): |
| 279 | path = self.with_segments(path_str) |
no test coverage detected