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