summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-09-25 16:32:02 (GMT)
committerFred Drake <fdrake@acm.org>2001-09-25 16:32:02 (GMT)
commitc0765c238107c274376bbe9b325cb6b98a5f436f (patch)
tree1fb554a7e6d63eea7eaab180489394d7023a23e3
parentc825280ea5159c6e396266c0f3e5e1d905346272 (diff)
downloadcpython-c0765c238107c274376bbe9b325cb6b98a5f436f.zip
cpython-c0765c238107c274376bbe9b325cb6b98a5f436f.tar.gz
cpython-c0765c238107c274376bbe9b325cb6b98a5f436f.tar.bz2
Minor changes.
-rw-r--r--Doc/lib/libhttplib.tex13
1 files changed, 8 insertions, 5 deletions
diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex
index ce69d80..6808ef4 100644
--- a/Doc/lib/libhttplib.tex
+++ b/Doc/lib/libhttplib.tex
@@ -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: