Searched refs:FileLoader (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/importlib/ |
D | abc.py | 256 class FileLoader(_bootstrap_external.FileLoader, ResourceLoader, ExecutionLoader): class 261 _register(FileLoader, machinery.SourceFileLoader,
|
D | _bootstrap_external.py | 1035 class FileLoader: class 1063 return super(FileLoader, self).load_module(fullname) 1085 class SourceFileLoader(FileLoader, SourceLoader): 1130 class SourcelessFileLoader(FileLoader, _LoaderBasics): 1155 class ExtensionFileLoader(FileLoader, _LoaderBasics):
|
/third_party/python/Lib/test/test_importlib/source/ |
D | test_file_loader.py | 39 class Tester(self.abc.FileLoader): 51 class Tester(self.abc.FileLoader):
|
/third_party/python/Lib/test/test_importlib/ |
D | test_abc.py | 107 class FileLoader(InheritanceTests): class 114 ) = test_util.test_both(FileLoader, abc=abc)
|
/third_party/python/Doc/library/ |
D | importlib.rst | 239 +-- FileLoader 683 .. class:: FileLoader(fullname, path) 1267 subclassing :class:`importlib.abc.FileLoader` and providing some concrete 1304 A concrete implementation of :class:`importlib.abc.FileLoader` which can
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 723 For loaders, the new abstract base class :class:`importlib.abc.FileLoader` helps
|
D | 3.4.rst | 2091 :meth:`importlib.abc.FileLoader.load_module`,
|
/third_party/python/Misc/ |
D | HISTORY | 7630 - Issue #13959: Make importlib.abc.FileLoader.load_module()/get_filename() and 7851 - Issue #14605: Add importlib.abc.FileLoader, importlib.machinery.(FileFinder,
|