summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-03 06:43:19 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-03 06:43:19 (GMT)
commit5e84d037bbe4c71cbb0260f07f534b231075b3cb (patch)
treebefdf2fd63d768b4c281bdb9d01bee3e4b5c9c18 /Misc
parentfd265f4a1892f7be64ceccadb276e37b3fb61f61 (diff)
parenteb1fee935365edbf8f35520d40bbcd999ef5d964 (diff)
downloadcpython-5e84d037bbe4c71cbb0260f07f534b231075b3cb.zip
cpython-5e84d037bbe4c71cbb0260f07f534b231075b3cb.tar.gz
cpython-5e84d037bbe4c71cbb0260f07f534b231075b3cb.tar.bz2
Issues #25232, #24657: Merge two CGI server fixes from 3.5
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS6
2 files changed, 7 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 530d6be..fd31926 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1582,6 +1582,7 @@ Daniel Wozniak
Wei Wu
Heiko Wundram
Doug Wyatt
+Xiang Zhang
Robert Xiao
Florent Xicluna
Hirokazu Yamamoto
diff --git a/Misc/NEWS b/Misc/NEWS
index f87b7fe..754041f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -218,6 +218,12 @@ Core and Builtins
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 #24483: C implementation of functools.lru_cache() now calculates key's
hash only once.