summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-06 17:17:04 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-06 17:17:04 (GMT)
commitb715fac819fadf56dc8ae0a7769e20ec053baa6d (patch)
tree63548aa14a5790075cdbceefd7a7522e86e2129d /Misc
parentf1397ad3999b9a12b47ecc17ba2c7b5bce0a9f2e (diff)
downloadcpython-b715fac819fadf56dc8ae0a7769e20ec053baa6d.zip
cpython-b715fac819fadf56dc8ae0a7769e20ec053baa6d.tar.gz
cpython-b715fac819fadf56dc8ae0a7769e20ec053baa6d.tar.bz2
Issue #3839: wsgiref should not override a Content-Length header set by
the application. Initial patch by Clovis Fabricio.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 43abe8d..fbc9326 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -261,6 +261,7 @@ Paul Everitt
David Everly
Greg Ewing
Martijn Faassen
+Clovis Fabricio
Andreas Faerber
Bill Fancher
Troy J. Farrell
diff --git a/Misc/NEWS b/Misc/NEWS
index 3fc052a..bdac346 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #3839: wsgiref should not override a Content-Length header set by
+ the application. Initial patch by Clovis Fabricio.
+
- Issue #10492: bdb.Bdb.run() only traces the execution of the code, not the
compilation (if the input is a string).