diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-03 00:45:46 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-03 00:45:46 (GMT) |
commit | acc03195b0609490a4e5f8b1d9eb504c22c6526e (patch) | |
tree | 2ba86f93a5c19a7865088cf15c720867e21608aa /Misc | |
parent | af8363926aa1cb96483a1777d478491e7415faff (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |