summaryrefslogtreecommitdiffstats
path: root/Doc/reference/import.rst
diff options
context:
space:
mode:
authorMarco Buttu <marco.buttu@gmail.com>2017-02-26 15:14:45 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-02-26 15:14:45 (GMT)
commit46ce7599af82a929506baeaaee5c149970440c4c (patch)
treee8eb8d7c42305aaeb65a3ea5b193b5941f994913 /Doc/reference/import.rst
parent5dc33eea538361f8a218255f83db2e9298dd8c53 (diff)
downloadcpython-46ce7599af82a929506baeaaee5c149970440c4c.zip
cpython-46ce7599af82a929506baeaaee5c149970440c4c.tar.gz
cpython-46ce7599af82a929506baeaaee5c149970440c4c.tar.bz2
bpo-29648: import.rst: Add reference to create_module() (GH-290)
Add a reference to create_module(), in the first versionadded of section Loaders.
Diffstat (limited to 'Doc/reference/import.rst')
-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