diff options
author | Himanshu Lakhara <himanshulakhara1947@gmail.com> | 2018-03-24 02:56:35 +0530 |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2018-03-23 14:26:35 -0700 |
commit | 5cbb84106efefd200933aa31e22abf39267d2557 (patch) | |
tree | f74d1dd98a308896237365b3db7a7c3a9350ffb2 | |
parent | 8bcfa02e4b1b65634e526e197588bc600674c80b (diff) | |
download | cpython-git-5cbb84106efefd200933aa31e22abf39267d2557.tar.gz |
bpo-27428: Fix WindowsRegistryFinder documentation to list appropriate ABC (GH-6061)
-rw-r--r-- | Doc/library/importlib.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index db75f69a0d..f9387c07e1 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -1030,7 +1030,7 @@ find and load modules. .. class:: WindowsRegistryFinder :term:`Finder` for modules declared in the Windows registry. This class - implements the :class:`importlib.abc.Finder` ABC. + implements the :class:`importlib.abc.MetaPathFinder` ABC. Only class methods are defined by this class to alleviate the need for instantiation. diff --git a/Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst b/Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst new file mode 100644 index 0000000000..c9ac8e22df --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst @@ -0,0 +1,2 @@ +Update documentation to clarify that ``WindowsRegistryFinder`` implements +``MetaPathFinder``. (Patch by Himanshu Lakhara) |