Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/importlib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ find and load modules.

Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`.

.. method:: load_module(name=None)
.. method:: load_module(fullname=None)

Concrete implementation of :meth:`importlib.abc.Loader.load_module` where
specifying the name of the module to load is optional.
Expand Down Expand Up @@ -1084,7 +1084,7 @@ find and load modules.
Returns ``None`` as bytecode files have no source when this loader is
used.

.. method:: load_module(name=None)
.. method:: load_module(fullname=None)

Concrete implementation of :meth:`importlib.abc.Loader.load_module` where
specifying the name of the module to load is optional.
Expand Down
Loading