[Python-checkins] CVS: python/dist/src/Doc/lib libhttplib.tex,1.24,1.25

Fred L. Drake fdrake@users.sourceforge.net
Tue, 25 Sep 2001 09:32:04 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv14346/lib

Modified Files:
	libhttplib.tex 
Log Message:
Minor changes.

Index: libhttplib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libhttplib.tex,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** libhttplib.tex	2001/09/01 02:35:23	1.24
--- libhttplib.tex	2001/09/25 16:32:02	1.25
***************
*** 3,14 ****
  
  \declaremodule{standard}{httplib}
! \modulesynopsis{HTTP protocol client (requires sockets).}
  
  \indexii{HTTP}{protocol}
  
! This module defines a class which implements the client side of the
! HTTP protocol.  It is normally not used directly --- the module
! \refmodule{urllib}\refstmodindex{urllib} uses it to handle URLs that
! use HTTP.
  
  The module defines one class, \class{HTTP}:
--- 3,16 ----
  
  \declaremodule{standard}{httplib}
! \modulesynopsis{HTTP and HTTPS protocol client (requires sockets).}
  
  \indexii{HTTP}{protocol}
  
! This module defines classes which implement the client side of the
! HTTP and HTTPS protocols.  It is normally not used directly --- the
! module \refmodule{urllib}\refstmodindex{urllib} uses it to handle URLs
! that use HTTP and HTTPS.  \strong{Note:}  HTTPS support is only
! available if the \refmodule{socket} module was compiled with SSL
! support.
  
  The module defines one class, \class{HTTP}:
***************
*** 111,114 ****
--- 113,117 ----
  \method{readlines()} methods.
  \end{methoddesc}
+ 
  
  \subsection{Examples \label{httplib-examples}}