summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-08 09:45:58 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-08 09:45:58 (GMT)
commit40de69ac588cece85fd3ed7fad06cdfdaf8f5e6a (patch)
tree050a0298638d1ccc2d272c8590a5277a12cd7bd1 /Misc
parent58f016909e7feead26d9c6e772a96a66b6e9f970 (diff)
parente42e129ebec9918adcae6f93b18bb6652f29c3fe (diff)
downloadcpython-40de69ac588cece85fd3ed7fad06cdfdaf8f5e6a.zip
cpython-40de69ac588cece85fd3ed7fad06cdfdaf8f5e6a.tar.gz
cpython-40de69ac588cece85fd3ed7fad06cdfdaf8f5e6a.tar.bz2
Issue #25738: Merge HTTP server from 3.5
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c596e31..44cbd4c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -787,6 +787,7 @@ Arkady Koplyarov
Peter A. Koren
Марк Коренберг
Vlad Korolev
+Susumu Koshiba
Joseph Koshy
Daniel Kozan
Jerzy Kozera
diff --git a/Misc/NEWS b/Misc/NEWS
index 93bad2a..b311207 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,11 @@ Core and Builtins
Library
-------
+- Issue #25738: Stop http.server.BaseHTTPRequestHandler.send_error() from
+ sending a message body for 205 Reset Content. Also, don't send Content
+ header fields in responses that don't have a body. Patch by Susumu
+ Koshiba.
+
- Issue #21313: Fix the "platform" module to tolerate when sys.version
contains truncated build information.