summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-26 15:40:03 (GMT)
committerGitHub <noreply@github.com>2017-02-26 15:40:03 (GMT)
commit63ed9bc94d8df45b16aee9b92f658ebb34aa1012 (patch)
treeb21e3ace26f266c6aadd0f4b559fc5774ef3a376
parent7963bed009c3b1800bfebd0aecad53960edec55c (diff)
downloadcpython-63ed9bc94d8df45b16aee9b92f658ebb34aa1012.zip
cpython-63ed9bc94d8df45b16aee9b92f658ebb34aa1012.tar.gz
cpython-63ed9bc94d8df45b16aee9b92f658ebb34aa1012.tar.bz2
bpo-29648: import.rst: Add reference to create_module() (GH-290) (GH-315)
(cherry picked from commit 46ce7599af82a929506baeaaee5c149970440c4c)
-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 64302b8..a981b87 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