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,5 +1,4 @@
"""Abstract base classes related to import."""
from . import _bootstrap
from . import _bootstrap_external
from . import machinery
try:

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

View File

@ -232,7 +232,6 @@ class _LazyModule(types.ModuleType):
# Figure out exactly what attributes were mutated between the creation
# of the module and now.
attrs_then = self.__spec__.loader_state['__dict__']
original_type = self.__spec__.loader_state['__class__']
attrs_now = self.__dict__
attrs_updated = {}
for key, value in attrs_now.items():