diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-03 05:55:46 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-03 05:55:46 (GMT) |
commit | cb29e8c0e5dc67c5f73926ea0c540612ca40714a (patch) | |
tree | a687804c0989d3a5d108daaa1550a6fa1aff3c48 /Misc | |
parent | a02e18a43f61543c911c82698d3cf44c8c11a0c2 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |