diff options
author | Georg Brandl <georg@python.org> | 2013-10-27 06:34:48 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-27 06:34:48 (GMT) |
commit | bf3f8eb9602154c9434cd82e61d1b103c30615f0 (patch) | |
tree | d5df932a151efb3f0fbe49de78cbc96956dcd91e /Doc/library | |
parent | 28e78414f9175774f26d8c564c7c1d3b078f99de (diff) | |
download | cpython-bf3f8eb9602154c9434cd82e61d1b103c30615f0.zip cpython-bf3f8eb9602154c9434cd82e61d1b103c30615f0.tar.gz cpython-bf3f8eb9602154c9434cd82e61d1b103c30615f0.tar.bz2 |
Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than
100 headers are read. Adapted from patch by Jyrki Pulliainen.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/http.client.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 6931fc6..4daeeea 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -169,8 +169,8 @@ The following exceptions are raised as appropriate: A subclass of :exc:`HTTPException`. Raised if a server responds with a HTTP status code that we don't understand. -The constants defined in this module are: +The constants defined in this module are: .. data:: HTTP_PORT |