Lines Matching refs:loaders
205 Finders and loaders
215 two conceptual objects, :term:`finders <finder>` and :term:`loaders <loader>`.
235 The following sections describe the protocol for finders and loaders in more
240 In previous versions of Python, finders returned :term:`loaders <loader>`
241 directly, whereas now they return module specs which *contain* loaders.
400 loaders. These were previously performed by the
406 Module loaders provide the critical function of loading: module execution.
425 Module loaders may opt in to creating the module object during loading
433 The :meth:`~importlib.abc.Loader.create_module` method of loaders.
440 For compatibility with existing loaders, the import machinery will use
441 the ``load_module()`` method of loaders if it exists and the loader does
443 deprecated and loaders should implement ``exec_module()`` instead.
1015 loaders back onto the import machinery. These changes allow the
1017 methods to finders and loaders.