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

Brett Cannon webhook-mailer at python.org
Wed Mar 25 14:57:55 EDT 2020


https://github.com/python/cpython/commit/302e5a8f79514fd84bafbc44b7c97ec636302322
commit: 302e5a8f79514fd84bafbc44b7c97ec636302322
branch: master
author: Brett Cannon <54418+brettcannon at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-03-25T11:57:47-07:00
summary:

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

files:
M Doc/library/importlib.rst

diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index cfde3a47f75dc..a612b1e1455a0 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