Searched refs:SourceLoader (Results 1 – 9 of 9) sorted by relevance
298 class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader): class317 if self.path_stats.__func__ is SourceLoader.path_stats:328 if self.path_mtime.__func__ is SourceLoader.path_mtime:342 _register(SourceLoader, machinery.SourceFileLoader)
735 class SourceLoader(_LoaderBasics): class947 class SourceFileLoader(FileLoader, SourceLoader):
1176 if 'load_module' in vars(importlib.SourceLoader):1177 old_exec_module = importlib.SourceLoader.exec_module1183 importlib.SourceLoader.exec_module = exec_module1193 del importlib.SourceLoader.exec_module1195 importlib.SourceLoader.exec_module = old_exec_module
116 class SourceLoader(InheritanceTests): class123 ) = test_util.test_both(SourceLoader, abc=abc)704 class SourceLoader(SourceOnlyLoader): class742 SPLIT_SL = make_abc_subclasses(SourceLoader, util=util, init=init)
200 if not isinstance(spec.loader, importlib.abc.SourceLoader):
240 +-- SourceLoader702 .. class:: SourceLoader1152 A concrete implementation of :class:`importlib.abc.SourceLoader` by1172 Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`.1176 Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`.1365 loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`.
2092 :meth:`importlib.abc.SourceLoader.load_module`) should no longer be2097 :meth:`importlib.abc.SourceLoader.exec_module`) and let the import system2310 * :meth:`importlib.abc.SourceLoader.get_source` no longer raises
2254 * :meth:`importlib.abc.SourceLoader.path_mtime` is now deprecated in favour of2255 :meth:`importlib.abc.SourceLoader.path_stats` as bytecode files now store
4867 - importlib.abc.SourceLoader.get_source() no longer changes SyntaxError or13286 - Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader