(self, path)
| 1015 | return path in self._files and path.rpartition(".")[2] == "py".casefold() |
| 1016 | |
| 1017 | def isxfile(self, path): |
| 1018 | if verbose: |
| 1019 | print("Check if", path, "is a executable") |
| 1020 | path = path.casefold() |
| 1021 | return path in self._files and path.rpartition(".")[2] == "exe".casefold() |
| 1022 | |
| 1023 | def joinpath(self, *path): |
| 1024 | return ntpath.normpath(ntpath.join(*path)) |
nothing calls this directly
no test coverage detected