diff -r 2145593d108d Doc/library/ftplib.rst --- a/Doc/library/ftplib.rst Sat Jul 03 13:57:30 2010 +0000 +++ b/Doc/library/ftplib.rst Wed Dec 26 16:59:58 2012 +0200 @@ -361,10 +361,10 @@ .. 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 -r 2145593d108d Doc/library/poplib.rst --- a/Doc/library/poplib.rst Sat Jul 03 13:57:30 2010 +0000 +++ b/Doc/library/poplib.rst Wed Dec 26 16:59:58 2012 +0200 @@ -99,7 +99,7 @@ .. 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 -r 2145593d108d Doc/library/smtplib.rst --- a/Doc/library/smtplib.rst Sat Jul 03 13:57:30 2010 +0000 +++ b/Doc/library/smtplib.rst Wed Dec 26 16:59:58 2012 +0200 @@ -29,7 +29,8 @@ 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.