summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-12-26 16:53:43 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-12-26 16:53:43 (GMT)
commita71cfc5cf3e32b694be754ff476ce0181a7319a2 (patch)
treef827ba52996a8f80b0f25eab25a3f74d542d0ed4 /Misc
parentcb36d247a731e2d1c041cf662966f4f3bacadac9 (diff)
downloadcpython-a71cfc5cf3e32b694be754ff476ce0181a7319a2.zip
cpython-a71cfc5cf3e32b694be754ff476ce0181a7319a2.tar.gz
cpython-a71cfc5cf3e32b694be754ff476ce0181a7319a2.tar.bz2
fix behavior of trailing slash redirection when a query string is involved (closes #23112)
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 8d44926..b204aeb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Core and Builtins
Library
-------
+- Issue #23112: Fix SimpleHTTPServer to correctly carry the query string and
+ fragment when it redirects to add a trailing slash.
+
- Issue #23093: In the io, module allow more operations to work on detached
streams.