summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-08 08:29:13 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-08 08:29:13 (GMT)
commite42e129ebec9918adcae6f93b18bb6652f29c3fe (patch)
tree7d7de12f52be66a4e944010453b18b07197e3d7d /Misc
parent4e50553823c16a65d80f6734b4ac303c18640380 (diff)
downloadcpython-e42e129ebec9918adcae6f93b18bb6652f29c3fe.zip
cpython-e42e129ebec9918adcae6f93b18bb6652f29c3fe.tar.gz
cpython-e42e129ebec9918adcae6f93b18bb6652f29c3fe.tar.bz2
Issue #25738: Don’t send message body for 205 Reset Content
Patch by Susumu Koshiba.
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 02e4821..262c647 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -781,6 +781,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 ff71902..4763374 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -131,6 +131,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.