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

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


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

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

(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 0057eab3649bf..79de0a06e7dcf 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