Home
last modified time | relevance | path

Searched refs:SourceLoader (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/importlib/
Dabc.py265 class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader): class
284 if self.path_stats.__func__ is SourceLoader.path_stats:
295 if self.path_mtime.__func__ is SourceLoader.path_mtime:
309 _register(SourceLoader, machinery.SourceFileLoader)
D_bootstrap_external.py891 class SourceLoader(_LoaderBasics): class
1072 if isinstance(self, (SourceLoader, ExtensionFileLoader)):
1085 class SourceFileLoader(FileLoader, SourceLoader):
/third_party/python/Lib/test/test_importlib/
Dtest_abc.py117 class SourceLoader(InheritanceTests): class
124 ) = test_util.test_both(SourceLoader, abc=abc)
726 class SourceLoader(SourceOnlyLoader): class
764 SPLIT_SL = make_abc_subclasses(SourceLoader, util=util, init=init)
/third_party/python/Lib/test/test_import/
D__init__.py1253 if 'load_module' in vars(importlib.SourceLoader):
1254 old_exec_module = importlib.SourceLoader.exec_module
1260 importlib.SourceLoader.exec_module = exec_module
1270 del importlib.SourceLoader.exec_module
1272 importlib.SourceLoader.exec_module = old_exec_module
/third_party/python/Lib/idlelib/
Dquery.py211 if not isinstance(spec.loader, importlib.abc.SourceLoader):
/third_party/python/Doc/library/
Dimportlib.rst240 +-- SourceLoader
718 .. class:: SourceLoader
1266 A concrete implementation of :class:`importlib.abc.SourceLoader` by
1286 Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`.
1290 Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`.
1480 loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`.
/third_party/python/Doc/whatsnew/
D3.4.rst2092 :meth:`importlib.abc.SourceLoader.load_module`) should no longer be
2097 :meth:`importlib.abc.SourceLoader.exec_module`) and let the import system
2310 * :meth:`importlib.abc.SourceLoader.get_source` no longer raises
D3.3.rst2254 * :meth:`importlib.abc.SourceLoader.path_mtime` is now deprecated in favour of
2255 :meth:`importlib.abc.SourceLoader.path_stats` as bytecode files now store
/third_party/python/Misc/
DHISTORY4867 - importlib.abc.SourceLoader.get_source() no longer changes SyntaxError or
13286 - Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader