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.
This commit is contained in:
Mariatta 2017-02-26 07:36:57 -08:00 committed by GitHub
parent fe70d924bb
commit 6b4a5f45e2
1 changed files with 5 additions and 2 deletions

View 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
----------