summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-26 15:36:57 (GMT)
committerGitHub <noreply@github.com>2017-02-26 15:36:57 (GMT)
commit6b4a5f45e2df524174a97832571c82c76a3d424a (patch)
treea60789db87faa3f71634689d57f9583e87da72ce
parentfe70d924bb6106d4c21eb414f4a1ba1324e8f46a (diff)
downloadcpython-6b4a5f45e2df524174a97832571c82c76a3d424a.zip
cpython-6b4a5f45e2df524174a97832571c82c76a3d424a.tar.gz
cpython-6b4a5f45e2df524174a97832571c82c76a3d424a.tar.bz2
bpo-26184: import.rst: Improve versionchanged note (GH-277)
Mention that an ImportError is raised when exec_module() is defined, but create_module() is not.
-rw-r--r--Doc/reference/import.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst
index b603d1f..484457a 100644
--- a/Doc/reference/import.rst
+++ b/Doc/reference/import.rst
@@ -464,8 +464,11 @@ import machinery will create the new module itself.
.. versionchanged:: 3.5
A :exc:`DeprecationWarning` is raised when ``exec_module()`` is defined but
- ``create_module()`` is not. Starting in Python 3.6 it will be an error to not
- define ``create_module()`` on a loader attached to a ModuleSpec.
+ ``create_module()`` is not.
+
+.. versionchanged:: 3.6
+ An :exc:`ImportError` is raised when ``exec_module()`` is defined but
+ ``create_module`` is not.
Submodules
----------