mirror of https://github.com/python/cpython.git
bpo-40443: Remove unused imports (GH-25429)
* pyclbr no longer uses copy * typing no longer uses ast Issue discovered by pyflakes.
This commit is contained in:
parent
8a232c7b17
commit
a6a5c91b1e
|
@ -42,7 +42,6 @@
|
|||
"""
|
||||
|
||||
import ast
|
||||
import copy
|
||||
import sys
|
||||
import importlib.util
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"""
|
||||
|
||||
from abc import abstractmethod, ABCMeta
|
||||
import ast
|
||||
import collections
|
||||
import collections.abc
|
||||
import contextlib
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Remove unused imports: pyclbr no longer uses copy, and typing no longer uses
|
||||
ast. Patch by Victor Stinner.
|
Loading…
Reference in New Issue