summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-26 15:33:54 (GMT)
committerGitHub <noreply@github.com>2017-02-26 15:33:54 (GMT)
commit7333d1760e12cf27bcf63265f72521892285c10a (patch)
treeb1a4e5656d89112cd239c70378524052dbd3b725 /Doc/reference
parent5c7b8f423ab1de6221351036ac4e139861a2f4a6 (diff)
downloadcpython-7333d1760e12cf27bcf63265f72521892285c10a.zip
cpython-7333d1760e12cf27bcf63265f72521892285c10a.tar.gz
cpython-7333d1760e12cf27bcf63265f72521892285c10a.tar.bz2
bpo-29648: import.rst: Add reference to create_module() (GH-290) (GH-314)
(cherry picked from commit 46ce7599af82a929506baeaaee5c149970440c4c)
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/import.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst
index 5e2c1c8..b603d1f 100644
--- a/Doc/reference/import.rst
+++ b/Doc/reference/import.rst
@@ -431,7 +431,7 @@ on the module object. If the method returns ``None``, the
import machinery will create the new module itself.
.. versionadded:: 3.4
- The create_module() method of loaders.
+ The :meth:`~importlib.abc.Loader.create_module` method of loaders.
.. versionchanged:: 3.4
The :meth:`~importlib.abc.Loader.load_module` method was replaced by