bpo-40443: Remove unused imports (GH-25429) · python/cpython@a6a5c91 (original) (raw)

3 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -42,7 +42,6 @@
42 42 """
43 43
44 44 import ast
45 -import copy
46 45 import sys
47 46 import importlib.util
48 47
Original file line number Diff line number Diff line change
@@ -20,7 +20,6 @@
20 20 """
21 21
22 22 from abc import abstractmethod, ABCMeta
23 -import ast
24 23 import collections
25 24 import collections.abc
26 25 import contextlib
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1 +Remove unused imports: pyclbr no longer uses copy, and typing no longer uses
2 +ast. Patch by Victor Stinner.