Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/importlib/
Dabc.py298 class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader): class
317 if self.path_stats.__func__ is SourceLoader.path_stats:
328 if self.path_mtime.__func__ is SourceLoader.path_mtime:
342 _register(SourceLoader, machinery.SourceFileLoader)
D_bootstrap_external.py735 class SourceLoader(_LoaderBasics): class
947 class SourceFileLoader(FileLoader, SourceLoader):
/external/python/cpython3/Lib/test/test_import/
D__init__.py1176 if 'load_module' in vars(importlib.SourceLoader):
1177 old_exec_module = importlib.SourceLoader.exec_module
1183 importlib.SourceLoader.exec_module = exec_module
1193 del importlib.SourceLoader.exec_module
1195 importlib.SourceLoader.exec_module = old_exec_module
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py116 class SourceLoader(InheritanceTests): class
123 ) = test_util.test_both(SourceLoader, abc=abc)
704 class SourceLoader(SourceOnlyLoader): class
742 SPLIT_SL = make_abc_subclasses(SourceLoader, util=util, init=init)
/external/python/cpython3/Lib/idlelib/
Dquery.py200 if not isinstance(spec.loader, importlib.abc.SourceLoader):
/external/python/cpython3/Doc/library/
Dimportlib.rst240 +-- SourceLoader
702 .. class:: SourceLoader
1152 A concrete implementation of :class:`importlib.abc.SourceLoader` by
1172 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`.
/external/python/cpython3/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
/external/python/cpython3/Misc/
DHISTORY4867 - importlib.abc.SourceLoader.get_source() no longer changes SyntaxError or
13286 - Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader