[Python-checkins] r82322 - python/trunk/Doc/library/httplib.rst

senthil.kumaran python-checkins at python.org
Mon Jun 28 12:54:17 CEST 2010


Author: senthil.kumaran
Date: Mon Jun 28 12:54:17 2010
New Revision: 82322

Log:
Fix issue3428 - Document HTTPMessage class.



Modified:
   python/trunk/Doc/library/httplib.rst

Modified: python/trunk/Doc/library/httplib.rst
==============================================================================
--- python/trunk/Doc/library/httplib.rst	(original)
+++ python/trunk/Doc/library/httplib.rst	Mon Jun 28 12:54:17 2010
@@ -93,6 +93,14 @@
 
    .. 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:
 
 


More information about the Python-checkins mailing list