]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issues #25232, #24657: Add NEWS to 3.6.0a1 section
authorMartin Panter <vadmium+py@gmail.com>
Sat, 3 Oct 2015 06:25:43 +0000 (06:25 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sat, 3 Oct 2015 06:25:43 +0000 (06:25 +0000)
Misc/NEWS

index 754041f9e2b27ffdd09fd12843114dd3f5dc2ab8..42d7a861df9f76bfb4cdb65d50f839b6a453ae49 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,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 #25287: Don't add crypt.METHOD_CRYPT to crypt.methods if it's not
   supported. Check if it is supported, it may not be supported on OpenBSD for
   example.