summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-09-13 07:21:18 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2013-09-13 07:21:18 (GMT)
commit72c238e21ae78f8da969c46a2b7317ff9904d155 (patch)
treed79545c48462a5b81abc233044c026b8e2075678 /Misc
parent016af3f4d484d0e4f756bf0a505d0df3cbc444ed (diff)
downloadcpython-72c238e21ae78f8da969c46a2b7317ff9904d155.zip
cpython-72c238e21ae78f8da969c46a2b7317ff9904d155.tar.gz
cpython-72c238e21ae78f8da969c46a2b7317ff9904d155.tar.bz2
Fix http.server's request handling case on trailing '/'.
Patch contributed by Vajrasky Kok. Addresses Issue #17324
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3d9f24d..1655238 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,6 +68,10 @@ Core and Builtins
Library
-------
+
+- Issue #17324: Fix http.server's request handling case on trailing '/'. Patch
+ contributed by Vajrasky Kok.
+
- Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL,
if all necessary functions are already found in libuuid.
Patch by Evgeny Sologubov.