Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/importlib/
Dabc.py285 class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader): class
304 if self.path_stats.__func__ is SourceLoader.path_stats:
315 if self.path_mtime.__func__ is SourceLoader.path_mtime:
329 _register(SourceLoader, machinery.SourceFileLoader)
D_bootstrap_external.py685 class SourceLoader(_LoaderBasics): class
836 class SourceFileLoader(FileLoader, SourceLoader):
/external/python/cpython3/Lib/test/test_import/
D__init__.py1070 if 'load_module' in vars(importlib.SourceLoader):
1071 old_exec_module = importlib.SourceLoader.exec_module
1077 importlib.SourceLoader.exec_module = exec_module
1087 del importlib.SourceLoader.exec_module
1089 importlib.SourceLoader.exec_module = old_exec_module
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py118 class SourceLoader(InheritanceTests): class
125 ) = test_util.test_both(SourceLoader, abc=abc)
658 class SourceLoader(SourceOnlyLoader): class
695 SPLIT_SL = make_abc_subclasses(SourceLoader, util=util, init=init)
/external/python/cpython3/Lib/idlelib/
Dquery.py197 if not isinstance(spec.loader, importlib.abc.SourceLoader):
/external/python/cpython3/Doc/library/
Dimportlib.rst234 +-- SourceLoader
613 .. class:: SourceLoader
916 A concrete implementation of :class:`importlib.abc.SourceLoader` by
936 Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`.
940 Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`.
1121 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/annotation-tools/asmx/test/lib/
Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META- ...
/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