diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-02-20 07:45:05 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-02-20 07:45:05 (GMT) |
commit | 8e286794173376350dfdf7d99ac688b1827a38a3 (patch) | |
tree | f5fbb319f6cef0a8ab43530ff3b763a361166b2a /Doc | |
parent | 868a5a7bc65a4b76a8e7d5d0d60a158f3da27a89 (diff) | |
parent | babc688180ac9214fcc217ef906b8d11c1babe36 (diff) | |
download | cpython-8e286794173376350dfdf7d99ac688b1827a38a3.zip cpython-8e286794173376350dfdf7d99ac688b1827a38a3.tar.gz cpython-8e286794173376350dfdf7d99ac688b1827a38a3.tar.bz2 |
Issue #23439: Add missing entries to http.client.__all__.
Also, document the LineTooLong exception since it can be raised by
the members of public API (e.g. http.client.HTTPResponse).
Patch by Martin Panter.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/http.client.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index b495f41..5e27a36 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -169,6 +169,12 @@ The following exceptions are raised as appropriate: status code that we don't understand. +.. exception:: LineTooLong + + A subclass of :exc:`HTTPException`. Raised if an excessively long line + is received in the HTTP protocol from the server. + + The constants defined in this module are: .. data:: HTTP_PORT |