summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-10-11 06:16:21 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-10-11 06:16:21 (GMT)
commit52d27204990775bddd2868b093f33d2fda842fac (patch)
tree0fac4a7c7cbcb187154932f2249742f02cb0d3d0 /Misc
parentec7c16d2b47e837cb5692de8fc47e0276e9773f8 (diff)
downloadcpython-52d27204990775bddd2868b093f33d2fda842fac.zip
cpython-52d27204990775bddd2868b093f33d2fda842fac.tar.gz
cpython-52d27204990775bddd2868b093f33d2fda842fac.tar.bz2
Issue #16088: BaseHTTPRequestHandler's send_error method includes a
Content-Length header. Patch by Antoine Pitrou.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0215e2d..63c62b9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,9 @@ Core and Builtins
Library
-------
+- Issue #16088: BaseHTTPRequestHandler's send_error method includes a
+ Content-Length header in it's response now. Patch by Antoine Pitrou.
+
- Issue #16114: The subprocess module no longer provides a misleading error
message stating that args[0] did not exist when either the cwd or executable
keyword arguments specified a path that did not exist.