diff options
author | Christian Sattler <sattler.christian@gmail.com> | 2021-12-12 08:41:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-12 08:41:12 (GMT) |
commit | e6fe10d34096a23be7d26271cf6aba429313b01d (patch) | |
tree | 09dbfe6bda0f9207031b376a6a384f7a2fe2d0ce /Misc | |
parent | 4325a766f5f603ef6dfb8c4d5798e5e73cb5efd5 (diff) | |
download | cpython-e6fe10d34096a23be7d26271cf6aba429313b01d.zip cpython-e6fe10d34096a23be7d26271cf6aba429313b01d.tar.gz cpython-e6fe10d34096a23be7d26271cf6aba429313b01d.tar.bz2 |
bpo-45874: Handle empty query string correctly in urllib.parse.parse_qsl (#29716)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-12-02-11-55-45.bpo-45874.dtJIsN.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-12-02-11-55-45.bpo-45874.dtJIsN.rst b/Misc/NEWS.d/next/Library/2021-12-02-11-55-45.bpo-45874.dtJIsN.rst new file mode 100644 index 0000000..ef793cf --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-12-02-11-55-45.bpo-45874.dtJIsN.rst @@ -0,0 +1,3 @@ +The empty query string, consisting of no query arguments, is now handled +correctly in ``urllib.parse.parse_qsl``. This caused problems before when +strict parsing was enabled. |