(self, path)
| 1009 | return path.casefold() in self._files |
| 1010 | |
| 1011 | def ismodule(self, path): |
| 1012 | if verbose: |
| 1013 | print("Check if", path, "is a module") |
| 1014 | path = path.casefold() |
| 1015 | return path in self._files and path.rpartition(".")[2] == "py".casefold() |
| 1016 | |
| 1017 | def isxfile(self, path): |
| 1018 | if verbose: |
no test coverage detected