Searched refs:SourceLoader (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/importlib/ |
D | abc.py | 265 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.py | 891 class SourceLoader(_LoaderBasics): class 1072 if isinstance(self, (SourceLoader, ExtensionFileLoader)): 1085 class SourceFileLoader(FileLoader, SourceLoader):
|
/third_party/python/Lib/test/test_importlib/ |
D | test_abc.py | 117 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__.py | 1253 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/ |
D | query.py | 211 if not isinstance(spec.loader, importlib.abc.SourceLoader):
|
/third_party/python/Doc/library/ |
D | importlib.rst | 240 +-- 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/ |
D | 3.4.rst | 2092 :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
|
D | 3.3.rst | 2254 * :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/ |
D | HISTORY | 4867 - importlib.abc.SourceLoader.get_source() no longer changes SyntaxError or 13286 - Implement importlib.abc.SourceLoader and deprecate PyLoader and PyPycLoader
|