(self, path)
| 1257 | return True |
| 1258 | |
| 1259 | def collapse_path(self, path): |
| 1260 | # the amount of pathlib.wtf you need to do to resolve .. on all platforms |
| 1261 | # is ridiculous |
| 1262 | return pathlib.PureWindowsPath(os.path.normpath(path.as_posix())) |
| 1263 | |
| 1264 | def normalize_path(self, path): |
| 1265 | """ |
no outgoing calls
no test coverage detected