(self, path)
| 979 | raise KeyError(key) from None |
| 980 | |
| 981 | def abspath(self, path): |
| 982 | if self.isabs(path): |
| 983 | return path |
| 984 | return self.joinpath("C:\\Absolute", path) |
| 985 | |
| 986 | def basename(self, path): |
| 987 | return path.rpartition("\\")[2] |
no test coverage detected