diff options
Diffstat (limited to 'Doc/library/importlib.rst')
-rw-r--r-- | Doc/library/importlib.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 6a972fb..4d429bb 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -1281,7 +1281,8 @@ an :term:`importer`. :meth:`~importlib.abc.Loader.exec_module` as control over what module type is used for the module is required. For those same reasons, the loader's :meth:`~importlib.abc.Loader.create_module` method will be ignored (i.e., the - loader's method should only return ``None``). Finally, + loader's method should only return ``None``; this excludes + :class:`BuiltinImporter` and :class:`ExtensionFileLoader`). Finally, modules which substitute the object placed into :attr:`sys.modules` will not work as there is no way to properly replace the module references throughout the interpreter safely; :exc:`ValueError` is raised if such a |