diff options
author | Georg Brandl <georg@python.org> | 2008-02-24 00:03:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-24 00:03:22 (GMT) |
commit | 2363503074a3f1c2dbe934bed0c865d326e34c1a (patch) | |
tree | 5d9a22409e0fb92e604f0758a0d7a1425ce9363c /Misc | |
parent | 5e8e6d2454258d76611444a7260f05094f66d205 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |