bpo-29648: import.rst: Add reference to create_module() (GH-290) (GH-… · python/cpython@7333d17 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 7333d17

(cherry picked from commit 46ce759)

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 1 addition & 1 deletion

Original file line number Diff line number Diff line change
@@ -431,7 +431,7 @@ on the module object. If the method returns ``None``, the
431 431 import machinery will create the new module itself.
432 432
433 433 .. versionadded:: 3.4
434 - The create_module() method of loaders.
434 + The :meth:`~importlib.abc.Loader.create_module` method of loaders.
435 435
436 436 .. versionchanged:: 3.4
437 437 The :meth:`~importlib.abc.Loader.load_module` method was replaced by