summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_abc.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2021-04-06 15:56:57 (GMT)
committerGitHub <noreply@github.com>2021-04-06 15:56:57 (GMT)
commit57c6cb5100d19a0e0218c77d887c3c239c9ce435 (patch)
tree8e193c0bc12f476821639c8363d280ef9d604271 /Lib/test/test_importlib/test_abc.py
parentefccff9ac84009ef48e8cb22548ce80940f76533 (diff)
downloadcpython-57c6cb5100d19a0e0218c77d887c3c239c9ce435.zip
cpython-57c6cb5100d19a0e0218c77d887c3c239c9ce435.tar.gz
cpython-57c6cb5100d19a0e0218c77d887c3c239c9ce435.tar.bz2
bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-25169)
Diffstat (limited to 'Lib/test/test_importlib/test_abc.py')
-rw-r--r--Lib/test/test_importlib/test_abc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/test_abc.py b/Lib/test/test_importlib/test_abc.py
index 98f5835..45cbf90 100644
--- a/Lib/test/test_importlib/test_abc.py
+++ b/Lib/test/test_importlib/test_abc.py
@@ -55,7 +55,7 @@ class InheritanceTests:
class MetaPathFinder(InheritanceTests):
- superclass_names = ['Finder']
+ superclass_names = []
subclass_names = ['BuiltinImporter', 'FrozenImporter', 'PathFinder',
'WindowsRegistryFinder']
@@ -66,7 +66,7 @@ class MetaPathFinder(InheritanceTests):
class PathEntryFinder(InheritanceTests):
- superclass_names = ['Finder']
+ superclass_names = []
subclass_names = ['FileFinder']