[Python-checkins] bpo-27428: Fix WindowsRegistryFinder documentation to list appropriate ABC (GH-6061)

Miss Islington (bot) webhook-mailer at python.org
Fri Mar 23 17:50:15 EDT 2018


https://github.com/python/cpython/commit/643a781188539de038745d23d0e8e5a03b781209
commit: 643a781188539de038745d23d0e8e5a03b781209
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-03-23T14:50:09-07:00
summary:

bpo-27428: Fix WindowsRegistryFinder documentation to list appropriate ABC (GH-6061)

(cherry picked from commit 5cbb84106efefd200933aa31e22abf39267d2557)

Co-authored-by: Himanshu Lakhara <himanshulakhara1947 at gmail.com>

files:
A Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst
M Doc/library/importlib.rst

diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index d194362fb003..c1cd9485cc78 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -799,7 +799,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 000000000000..c9ac8e22df08
--- /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)



More information about the Python-checkins mailing list