From: Eric Snow Date: Sat, 5 Oct 2013 02:28:52 +0000 (-0600) Subject: [issue 19152] Ensure we have actually registered ExtensionFileLoader as an ExecutionL... X-Git-Tag: v3.4.0a4~271^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e70fa53142564bed7415b3798c3e77f0574f816;p=python [issue 19152] Ensure we have actually registered ExtensionFileLoader as an ExecutionLoader. --- diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py index dcbe01097a..01de67d457 100644 --- a/Lib/importlib/abc.py +++ b/Lib/importlib/abc.py @@ -188,7 +188,7 @@ class InspectLoader(Loader): load_module = _bootstrap._LoaderBasics.load_module _register(InspectLoader, machinery.BuiltinImporter, machinery.FrozenImporter, - machinery.ExtensionFileLoader, _bootstrap.NamespaceLoader) + _bootstrap.NamespaceLoader) class ExecutionLoader(InspectLoader): @@ -237,7 +237,7 @@ class ExecutionLoader(InspectLoader): super().init_module_attrs(module) _bootstrap._init_file_attrs(self, module) -_register(machinery.ExtensionFileLoader) +_register(ExecutionLoader, machinery.ExtensionFileLoader) class FileLoader(_bootstrap.FileLoader, ResourceLoader, ExecutionLoader): diff --git a/Lib/test/test_importlib/test_abc.py b/Lib/test/test_importlib/test_abc.py index bfdd6f16a9..979a481b6b 100644 --- a/Lib/test/test_importlib/test_abc.py +++ b/Lib/test/test_importlib/test_abc.py @@ -100,6 +100,7 @@ Frozen_InspectLoaderInheritanceTests, Source_InspectLoaderInheritanceTests = tes class ExecutionLoader(InheritanceTests): superclass_names = ['InspectLoader'] + subclass_names = ['ExtensionFileLoader'] tests = create_inheritance_tests(ExecutionLoader) Frozen_ExecutionLoaderInheritanceTests, Source_ExecutionLoaderInheritanceTests = tests