diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-28 10:54:17 +0000 |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-28 10:54:17 +0000 |
commit | 2af7e6d2d9897ccff605fa4f57e4c6de9b4bc980 (patch) | |
tree | 24d091a9ab574d12e4add4a9c1bba85fd6ff0713 | |
parent | 4c5bc4d7f82a26f9339f0dd00d030114e4d86a14 (diff) | |
download | cpython-git-2af7e6d2d9897ccff605fa4f57e4c6de9b4bc980.tar.gz |
Fix issue3428 - Document HTTPMessage class.
-rw-r--r-- | Doc/library/httplib.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/httplib.rst b/Doc/library/httplib.rst index f7d9328a76..7bd85a3c44 100644 --- a/Doc/library/httplib.rst +++ b/Doc/library/httplib.rst @@ -93,6 +93,14 @@ The module provides the following classes: .. versionadded:: 2.0 +.. class:: HTTPMessage + + An :class:`HTTPMessage` instance is used to hold the headers from an HTTP + response. It is implemented using the :class:`mimetools.Message` class and + provides utility functions to deal with HTTP Headers. It is not directly + instantiated by the users. + + The following exceptions are raised as appropriate: |