summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-09-30 12:56:46 (GMT)
committerGeorg Brandl <georg@python.org>2014-09-30 12:56:46 (GMT)
commit860c367c29eb557930099a7cc7fe297a259275f6 (patch)
treef1b368e97e9ca6d9be8fd55872d46a0e65627456 /Misc
parent21bf3f942be920f3b051f6af43f7c37b9aa5cff3 (diff)
downloadcpython-860c367c29eb557930099a7cc7fe297a259275f6.zip
cpython-860c367c29eb557930099a7cc7fe297a259275f6.tar.gz
cpython-860c367c29eb557930099a7cc7fe297a259275f6.tar.bz2
Issue #22419: Limit the length of incoming HTTP request in wsgiref server to
65536 bytes and send a 414 error code for higher lengths. Patch contributed by Devin Cook.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c1df480..c183dc7 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -219,6 +219,7 @@ Denver Coneybeare
Geremy Condra
Juan José Conti
Matt Conway
+Devin Cook
David M. Cooke
Jason R. Coombs
Garrett Cooper
diff --git a/Misc/NEWS b/Misc/NEWS
index c6df72b..d8e61c30 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2.6?
Library
-------
+- Issue #22419: Limit the length of incoming HTTP request in wsgiref server to
+ 65536 bytes and send a 414 error code for higher lengths. Patch contributed
+ by Devin Cook.
+
- Issue #22517: When a io.BufferedRWPair object is deallocated, clear its
weakrefs.