(self)
| 143 | return prefix + quote_from_bytes(os.fsencode(path)) |
| 144 | |
| 145 | def normalize(self) -> 'LocationPath': |
| 146 | normalized_path = self._path_module.normpath(str(self)) |
| 147 | return self.__class__(normalized_path) |
| 148 | |
| 149 | |
| 150 | class LocationPosixPath(LocationPath, PurePosixPath): |
no outgoing calls
no test coverage detected