diff options
author | Fred Drake <fdrake@acm.org> | 2003-01-27 16:32:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-01-27 16:32:04 (GMT) |
commit | 0a9cc58c859f31c5c698ebee5ad262783bce8e1e (patch) | |
tree | e617a11e3bb94db00c11080f1e2b786172a3217a /Doc | |
parent | 9db20c62ff85001514f51bb6e0e29c02d5f9c6a5 (diff) | |
download | cpython-0a9cc58c859f31c5c698ebee5ad262783bce8e1e.zip cpython-0a9cc58c859f31c5c698ebee5ad262783bce8e1e.tar.gz cpython-0a9cc58c859f31c5c698ebee5ad262783bce8e1e.tar.bz2 |
Adjust some of Skip's latest changes slightly; these really are things
that should stand out.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libhttplib.tex | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex index a24cb53..d89ee9c 100644 --- a/Doc/lib/libhttplib.tex +++ b/Doc/lib/libhttplib.tex @@ -10,11 +10,19 @@ 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. \note{HTTPS support is only -available if the \refmodule{socket} module was compiled with SSL -support.} \note{The \class{HTTP} class is retained only for backward -compatibility with 1.5.2. It should not be used in new code. Refer to the -online docstrings for usage.} +that use HTTP and HTTPS. + +\begin{notice} + HTTPS support is only available if the \refmodule{socket} module was + compiled with SSL support. +\end{notice} + +\begin{notice} + The public interface for this module changed substantially in Python + 2.0. The \class{HTTP} class is retained only for backward + compatibility with 1.5.2. It should not be used in new code. Refer + to the online docstrings for usage. +\end{notice} The constants defined in this module are: |