summaryrefslogtreecommitdiffstats
path: root/Lib/typing.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-04-16 09:26:06 (GMT)
committerGitHub <noreply@github.com>2021-04-16 09:26:06 (GMT)
commita6a5c91b1ee56fa5ba7ab8c5aeca70c31cc85fd3 (patch)
treee87ca293071e20bf56c29139b31773ae9801d884 /Lib/typing.py
parent8a232c7b17a2e41ae14d8bb7937ddfea69301dce (diff)
downloadcpython-a6a5c91b1ee56fa5ba7ab8c5aeca70c31cc85fd3.zip
cpython-a6a5c91b1ee56fa5ba7ab8c5aeca70c31cc85fd3.tar.gz
cpython-a6a5c91b1ee56fa5ba7ab8c5aeca70c31cc85fd3.tar.bz2
bpo-40443: Remove unused imports (GH-25429)
* pyclbr no longer uses copy * typing no longer uses ast Issue discovered by pyflakes.
Diffstat (limited to 'Lib/typing.py')
-rw-r--r--Lib/typing.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/typing.py b/Lib/typing.py
index dc2a7a4..ea66cf5 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -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