[Python-checkins] bpo-19698: Document when importlib.machinery.FrozenImporter gained spec-related methods (GH-19158) (#19164)

Miss Islington (bot) webhook-mailer at python.org
Thu Mar 26 13:15:10 EDT 2020


https://github.com/python/cpython/commit/8dad09a2242194a4101374b91ce87bb47a487cf7
commit: 8dad09a2242194a4101374b91ce87bb47a487cf7
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-03-26T10:15:05-07:00
summary:

bpo-19698: Document when importlib.machinery.FrozenImporter gained spec-related methods (GH-19158) (#19164)

(cherry picked from commit 302e5a8f79514fd84bafbc44b7c97ec636302322)

Co-authored-by: Brett Cannon <54418+brettcannon at users.noreply.github.com>

Co-authored-by: Brett Cannon <54418+brettcannon at users.noreply.github.com>

files:
M Doc/library/importlib.rst

diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index aa22a5b16838b..2de10435904aa 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -1029,6 +1029,10 @@ find and load modules.
     Only class methods are defined by this class to alleviate the need for
     instantiation.
 
+    .. versionchanged:: 3.4
+       Gained :meth:`~Loader.create_module` and :meth:`~Loader.exec_module`
+       methods.
+
 
 .. class:: WindowsRegistryFinder
 



More information about the Python-checkins mailing list