[Python-checkins] r82323 - in python/branches/release26-maint: Doc/library/httplib.rst

senthil.kumaran python-checkins at python.org
Mon Jun 28 12:58:16 CEST 2010


Author: senthil.kumaran
Date: Mon Jun 28 12:58:16 2010
New Revision: 82323

Log:
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.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/httplib.rst

Modified: python/branches/release26-maint/Doc/library/httplib.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/httplib.rst	(original)
+++ python/branches/release26-maint/Doc/library/httplib.rst	Mon Jun 28 12:58:16 2010
@@ -85,6 +85,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