diff options
| author | Eric Snow <ericsnowcurrently@gmail.com> | 2013-10-05 02:28:52 (GMT) |
|---|---|---|
| committer | Eric Snow <ericsnowcurrently@gmail.com> | 2013-10-05 02:28:52 (GMT) |
| commit | 7e70fa53142564bed7415b3798c3e77f0574f816 (patch) | |
| tree | bd0064989ee3d261385c70a7f729f5a1bce73f7b /Lib/test/test_importlib/test_abc.py | |
| parent | 17f1eddcfe886fbb11a71550978e37533e19d79e (diff) | |
| download | cpython-7e70fa53142564bed7415b3798c3e77f0574f816.zip cpython-7e70fa53142564bed7415b3798c3e77f0574f816.tar.gz cpython-7e70fa53142564bed7415b3798c3e77f0574f816.tar.bz2 | |
[issue 19152] Ensure we have actually registered ExtensionFileLoader as an ExecutionLoader.
Diffstat (limited to 'Lib/test/test_importlib/test_abc.py')
| -rw-r--r-- | Lib/test/test_importlib/test_abc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_importlib/test_abc.py b/Lib/test/test_importlib/test_abc.py index bfdd6f1..979a481 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 |
