From: Fred Drake Date: Fri, 28 Dec 2001 04:35:10 +0000 (+0000) Subject: Fixed up some index entries. X-Git-Tag: v2.2.1c1~268 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6276bd1f10ad0203c9783c288ce017053271eae;p=thirdparty%2FPython%2Fcpython.git Fixed up some index entries. --- diff --git a/Doc/lib/libftplib.tex b/Doc/lib/libftplib.tex index e7e534174a84..0d0d7008420b 100644 --- a/Doc/lib/libftplib.tex +++ b/Doc/lib/libftplib.tex @@ -4,10 +4,12 @@ \declaremodule{standard}{ftplib} \modulesynopsis{FTP protocol client (requires sockets).} +\indexii{FTP}{protocol} +\index{FTP!\module{ftplib} (standard module)} This module defines the class \class{FTP} and a few related items. The \class{FTP} class implements the client side of the FTP -protocol.\indexii{FTP}{protocol} You can use this to write Python +protocol. You can use this to write Python programs that perform a variety of automated FTP jobs, such as mirroring other ftp servers. It is also used by the module \refmodule{urllib} to handle URLs that use FTP. For more information diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex index 685a0bf1600f..156e74bfeaa2 100644 --- a/Doc/lib/libhttplib.tex +++ b/Doc/lib/libhttplib.tex @@ -5,6 +5,7 @@ \modulesynopsis{HTTP and HTTPS protocol client (requires sockets).} \indexii{HTTP}{protocol} +\index{HTTP!\module{httplib} (standard module)} This module defines classes which implement the client side of the HTTP and HTTPS protocols. It is normally not used directly --- the