(self, loader_class, fullname, path, smsl, target)
| 1345 | self._path_mtime = -1 |
| 1346 | |
| 1347 | def _get_spec(self, loader_class, fullname, path, smsl, target): |
| 1348 | loader = loader_class(fullname, path) |
| 1349 | return spec_from_file_location(fullname, path, loader=loader, |
| 1350 | submodule_search_locations=smsl) |
| 1351 | |
| 1352 | def find_spec(self, fullname, target=None): |
| 1353 | """Try to find a spec for the specified module. |
no test coverage detected