]> granicus.if.org Git - python/commitdiff
Minor changes.
authorFred Drake <fdrake@acm.org>
Tue, 25 Sep 2001 16:32:02 +0000 (16:32 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 25 Sep 2001 16:32:02 +0000 (16:32 +0000)
Doc/lib/libhttplib.tex

index ce69d804cc2e4f387230432baa2eb6230a6d9782..6808ef44db28b790f914fad56f33dfa6d8989f8e 100644 (file)
@@ -2,14 +2,16 @@
          HTTP protocol client}
 
 \declaremodule{standard}{httplib}
-\modulesynopsis{HTTP protocol client (requires sockets).}
+\modulesynopsis{HTTP and HTTPS 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.
+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,6 +113,7 @@ read, using the \method{read()}, \method{readline()} or
 \method{readlines()} methods.
 \end{methoddesc}
 
+
 \subsection{Examples \label{httplib-examples}}
 
 Here is an example session that uses the \samp{GET} method: