diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2008-06-23 04:41:59 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2008-06-23 04:41:59 (GMT) |
commit | aca8fd7a9dc96143e592076fab4d89cc1691d03f (patch) | |
tree | f18d273e3f72b917139e07f3e6e4d72a5119fd94 /Doc/library/ftplib.rst | |
parent | d11a44312f2e80a9c4979063ce94233f924dcc5b (diff) | |
download | cpython-aca8fd7a9dc96143e592076fab4d89cc1691d03f.zip cpython-aca8fd7a9dc96143e592076fab4d89cc1691d03f.tar.gz cpython-aca8fd7a9dc96143e592076fab4d89cc1691d03f.tar.bz2 |
Documentation updates for urllib package. Modified the documentation for the
urllib,urllib2 -> urllib.request,urllib.error
urlparse -> urllib.parse
RobotParser -> urllib.robotparser
Updated tutorial references and other module references (http.client.rst,
ftplib.rst,contextlib.rst)
Updated the examples in the urllib2-howto
Addresses Issue3142.
Diffstat (limited to 'Doc/library/ftplib.rst')
-rw-r--r-- | Doc/library/ftplib.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index 8a35a40..f360c60 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -13,9 +13,9 @@ This module defines the class :class:`FTP` and a few related items. The :class:`FTP` class implements the client side of the FTP 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 :mod:`urllib` to -handle URLs that use FTP. For more information on FTP (File Transfer Protocol), -see Internet :rfc:`959`. +as mirroring other ftp servers. It is also used by the module +:mod:`urllib.request` to handle URLs that use FTP. For more information on FTP +(File Transfer Protocol), see Internet :rfc:`959`. Here's a sample session using the :mod:`ftplib` module:: |