(self, path)
| 1004 | return path.casefold() in self._dirs |
| 1005 | |
| 1006 | def isfile(self, path): |
| 1007 | if verbose: |
| 1008 | print("Check if", path, "is a file") |
| 1009 | return path.casefold() in self._files |
| 1010 | |
| 1011 | def ismodule(self, path): |
| 1012 | if verbose: |
no test coverage detected