]> granicus.if.org Git - python/commitdiff
bpo-26184: import.rst: Improve versionchanged note (GH-277) (#320)
authorMariatta <Mariatta@users.noreply.github.com>
Sun, 26 Feb 2017 16:55:23 +0000 (08:55 -0800)
committerGitHub <noreply@github.com>
Sun, 26 Feb 2017 16:55:23 +0000 (08:55 -0800)
(cherry picked from commit 6b4a5f45e2df524174a97832571c82c76a3d424a)

Doc/reference/import.rst

index b603d1f978a7a657c954708982b9d8755c915214..484457a8a5bb5cc5dc78123d3f6fe9c0263d1a06 100644 (file)
@@ -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
 ----------