Home
last modified time | relevance | path

Searched refs:FileLoader (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/importlib/
Dabc.py256 class FileLoader(_bootstrap_external.FileLoader, ResourceLoader, ExecutionLoader): class
261 _register(FileLoader, machinery.SourceFileLoader,
D_bootstrap_external.py1035 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/
Dtest_file_loader.py39 class Tester(self.abc.FileLoader):
51 class Tester(self.abc.FileLoader):
/third_party/python/Lib/test/test_importlib/
Dtest_abc.py107 class FileLoader(InheritanceTests): class
114 ) = test_util.test_both(FileLoader, abc=abc)
/third_party/python/Doc/library/
Dimportlib.rst239 +-- 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/
D3.3.rst723 For loaders, the new abstract base class :class:`importlib.abc.FileLoader` helps
D3.4.rst2091 :meth:`importlib.abc.FileLoader.load_module`,
/third_party/python/Misc/
DHISTORY7630 - Issue #13959: Make importlib.abc.FileLoader.load_module()/get_filename() and
7851 - Issue #14605: Add importlib.abc.FileLoader, importlib.machinery.(FileFinder,