summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2021-04-30 19:01:55 (GMT)
committerGitHub <noreply@github.com>2021-04-30 19:01:55 (GMT)
commit6143fcdf8bfe54c24e3081bcee423f4d51f35c4e (patch)
treee9bb5360522c4451419f162c42199be5510b8fb7 /Misc
parent6689e45dfee75d756c540ff0946ebf0ae8847f43 (diff)
downloadcpython-6143fcdf8bfe54c24e3081bcee423f4d51f35c4e.zip
cpython-6143fcdf8bfe54c24e3081bcee423f4d51f35c4e.tar.gz
cpython-6143fcdf8bfe54c24e3081bcee423f4d51f35c4e.tar.bz2
bpo-43979: Remove unnecessary operation from urllib.parse.parse_qsl (GH-25756)
Automerge-Triggered-By: GH:gpshead
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-05-01-01-36-51.bpo-43979.43oJ9L.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-05-01-01-36-51.bpo-43979.43oJ9L.rst b/Misc/NEWS.d/next/Library/2021-05-01-01-36-51.bpo-43979.43oJ9L.rst
new file mode 100644
index 0000000..d5d1caa
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-05-01-01-36-51.bpo-43979.43oJ9L.rst
@@ -0,0 +1,2 @@
+Removed an unnecessary list comprehension before looping from
+:func:`urllib.parse.parse_qsl`. Patch by Christoph Zwerschke and Dong-hee Na.