summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-24 00:03:22 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-24 00:03:22 (GMT)
commit2363503074a3f1c2dbe934bed0c865d326e34c1a (patch)
tree5d9a22409e0fb92e604f0758a0d7a1425ce9363c /Misc
parent5e8e6d2454258d76611444a7260f05094f66d205 (diff)
downloadcpython-2363503074a3f1c2dbe934bed0c865d326e34c1a.zip
cpython-2363503074a3f1c2dbe934bed0c865d326e34c1a.tar.gz
cpython-2363503074a3f1c2dbe934bed0c865d326e34c1a.tar.bz2
#900744: If an invalid chunked-encoding header is sent by a server,
httplib will now raise IncompleteRead and close the connection instead of raising ValueError.
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 cac6932..9d9264e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -441,6 +441,10 @@ Core and builtins
Library
-------
+- #900744: If an invalid chunked-encoding header is sent by a server,
+ httplib will now raise IncompleteRead and close the connection instead
+ of raising ValueError.
+
- #1492: The content type of BaseHTTPServer error messages can now be
overridden.