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:
Victor Stinner 2021-04-16 11:26:06 +02:00 committed by GitHub
parent 8a232c7b17
commit a6a5c91b1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,6 @@ shouldn't happen often.
"""
import ast
import copy
import sys
import importlib.util

View file

@ -20,7 +20,6 @@ At large scale, the structure of the module is following:
"""
from abc import abstractmethod, ABCMeta
import ast
import collections
import collections.abc
import contextlib

View file

@ -0,0 +1,2 @@
Remove unused imports: pyclbr no longer uses copy, and typing no longer uses
ast. Patch by Victor Stinner.