summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-03 00:45:46 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-03 00:45:46 (GMT)
commitacc03195b0609490a4e5f8b1d9eb504c22c6526e (patch)
tree2ba86f93a5c19a7865088cf15c720867e21608aa /Misc
parentaf8363926aa1cb96483a1777d478491e7415faff (diff)
downloadcpython-acc03195b0609490a4e5f8b1d9eb504c22c6526e.zip
cpython-acc03195b0609490a4e5f8b1d9eb504c22c6526e.tar.gz
cpython-acc03195b0609490a4e5f8b1d9eb504c22c6526e.tar.bz2
Issue #26586: Handle excessive header fields in http.server, by Xiang Zhang
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 e2e37a4..9682b40 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -99,6 +99,10 @@ Core and Builtins
Library
-------
+- Issue #26586: In http.server, respond with "413 Request header fields too
+ large" if there are too many header fields to parse, rather than killing
+ the connection and raising an unhandled exception. Patch by Xiang Zhang.
+
- Issue #22854: Change BufferedReader.writable() and
BufferedWriter.readable() to always return False.