summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_abc.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-08-02 11:45:24 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-08-02 11:45:24 (GMT)
commitff79486bb5e353dd32fa422ff65a595a3ff1b554 (patch)
tree8f41923225164f4ea7ed5329964550863ec220dd /Lib/test/test_importlib/test_abc.py
parent8a9080feffc757360d0d73e4173189586098ffb5 (diff)
downloadcpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.zip
cpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.tar.gz
cpython-ff79486bb5e353dd32fa422ff65a595a3ff1b554.tar.bz2
Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow
Diffstat (limited to 'Lib/test/test_importlib/test_abc.py')
-rw-r--r--Lib/test/test_importlib/test_abc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_abc.py b/Lib/test/test_importlib/test_abc.py
index 90f38b8..aa87591 100644
--- a/Lib/test/test_importlib/test_abc.py
+++ b/Lib/test/test_importlib/test_abc.py
@@ -34,7 +34,7 @@ class MetaPathFinder(InheritanceTests, unittest.TestCase):
superclasses = [abc.Finder]
subclasses = [machinery.BuiltinImporter, machinery.FrozenImporter,
- machinery.PathFinder]
+ machinery.PathFinder, machinery.WindowsRegistryFinder]
class PathEntryFinder(InheritanceTests, unittest.TestCase):