summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
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 /Misc/NEWS.d/next
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 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2021-04-16-02-03-00.bpo-40443.Io6FHL.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-04-16-02-03-00.bpo-40443.Io6FHL.rst b/Misc/NEWS.d/next/Library/2021-04-16-02-03-00.bpo-40443.Io6FHL.rst
new file mode 100644
index 0000000..f5672e6
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-16-02-03-00.bpo-40443.Io6FHL.rst
@@ -0,0 +1,2 @@
+Remove unused imports: pyclbr no longer uses copy, and typing no longer uses
+ast. Patch by Victor Stinner.