diff options
author | Jesus Cea <jcea@jcea.es> | 2012-12-26 15:46:04 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-12-26 15:46:04 (GMT) |
commit | 4947049b40f6ca304bce5bef3dcbac23e9ed54e1 (patch) | |
tree | a97c5b3e71e9ec54258c447fbe3ebdc94929de07 | |
parent | 2f01e239cb67d7d72d08e2b6f1a7c7769ee41b25 (diff) | |
download | cpython-4947049b40f6ca304bce5bef3dcbac23e9ed54e1.zip cpython-4947049b40f6ca304bce5bef3dcbac23e9ed54e1.tar.gz cpython-4947049b40f6ca304bce5bef3dcbac23e9ed54e1.tar.bz2 |
Closes #16789: :meth:`quit` links to constants instead of own module
-rw-r--r-- | Doc/library/ftplib.rst | 8 | ||||
-rw-r--r-- | Doc/library/poplib.rst | 2 | ||||
-rw-r--r-- | Doc/library/smtplib.rst | 3 |
3 files changed, 7 insertions, 6 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index b8f5b4e..9882789 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -370,10 +370,10 @@ followed by ``lines`` for the text version or ``binary`` for the binary version. .. method:: FTP.close() Close the connection unilaterally. This should not be applied to an already - closed connection such as after a successful call to :meth:`quit`. After this - call the :class:`FTP` instance should not be used any more (after a call to - :meth:`close` or :meth:`quit` you cannot reopen the connection by issuing - another :meth:`login` method). + closed connection such as after a successful call to :meth:`~FTP.quit`. + After this call the :class:`FTP` instance should not be used any more (after + a call to :meth:`close` or :meth:`~FTP.quit` you cannot reopen the + connection by issuing another :meth:`login` method). FTP_TLS Objects diff --git a/Doc/library/poplib.rst b/Doc/library/poplib.rst index ca77e6e..07c243f 100644 --- a/Doc/library/poplib.rst +++ b/Doc/library/poplib.rst @@ -102,7 +102,7 @@ An :class:`POP3` instance has the following methods: .. method:: POP3.pass_(password) Send password, response includes message count and mailbox size. Note: the - mailbox on the server is locked until :meth:`quit` is called. + mailbox on the server is locked until :meth:`~poplib.quit` is called. .. method:: POP3.apop(user, secret) diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst index b0b58e8..044bbde 100644 --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -32,7 +32,8 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions). setting will be used). For normal use, you should only require the initialization/connect, - :meth:`sendmail`, and :meth:`quit` methods. An example is included below. + :meth:`sendmail`, and :meth:`~smtplib.quit` methods. + An example is included below. .. versionchanged:: 2.6 *timeout* was added. |