(self, *path)
| 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)) |
| 1025 | |
| 1026 | def readlines(self, path): |
| 1027 | try: |
no test coverage detected