summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-06-28 10:58:16 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-06-28 10:58:16 (GMT)
commit4e85b501542489b2415cfe57a6844f09f371c837 (patch)
tree9b8ccf3b36d9d11bb5ec7ea30f5ab63bab0f556a
parent68f74ba556e348cd3f2b7ca4638e363d6a8625f1 (diff)
downloadcpython-4e85b501542489b2415cfe57a6844f09f371c837.zip
cpython-4e85b501542489b2415cfe57a6844f09f371c837.tar.gz
cpython-4e85b501542489b2415cfe57a6844f09f371c837.tar.bz2
Merged revisions 82322 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82322 | senthil.kumaran | 2010-06-28 16:24:17 +0530 (Mon, 28 Jun 2010) | 3 lines Fix issue3428 - Document HTTPMessage class. ........
-rw-r--r--Doc/library/httplib.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/httplib.rst b/Doc/library/httplib.rst
index da2169c..0689b0e 100644
--- a/Doc/library/httplib.rst
+++ b/Doc/library/httplib.rst
@@ -85,6 +85,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: