bpo-42403: Fix pyflakes warnings in importlib (GH-23396)

Remove unused imports and unused local variables.
This commit is contained in:
Victor Stinner 2020-11-19 11:20:57 +01:00 committed by GitHub
parent bf9d70a1a5
commit 7d9d25dbed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 4 deletions

View file

@ -1,7 +1,5 @@
"""The machinery of importlib: finders, loaders, hooks, etc."""
import _imp
from ._bootstrap import ModuleSpec
from ._bootstrap import BuiltinImporter
from ._bootstrap import FrozenImporter