summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-03 05:55:46 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-03 05:55:46 (GMT)
commitcb29e8c0e5dc67c5f73926ea0c540612ca40714a (patch)
treea687804c0989d3a5d108daaa1550a6fa1aff3c48 /Misc
parenta02e18a43f61543c911c82698d3cf44c8c11a0c2 (diff)
downloadcpython-cb29e8c0e5dc67c5f73926ea0c540612ca40714a.zip
cpython-cb29e8c0e5dc67c5f73926ea0c540612ca40714a.tar.gz
cpython-cb29e8c0e5dc67c5f73926ea0c540612ca40714a.tar.bz2
Issue #24657: Prevent CGIRequestHandler from collapsing the URL query
Initial patch from Xiang Zhang. Also fix out-of-date _url_collapse_path() doc string.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f033f3c..1c8bc49 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -93,6 +93,9 @@ Library
- Issue #25232: Fix CGIRequestHandler to split the query from the URL at the
first question mark (?) rather than the last. Patch from Xiang Zhang.
+- Issue #24657: Prevent CGIRequestHandler from collapsing slashes in the
+ query part of the URL as if it were a path. Patch from Xiang Zhang.
+
- Issue #22958: Constructor and update method of weakref.WeakValueDictionary
now accept the self and the dict keyword arguments.