diff options
author | Jesus Cea <jcea@jcea.es> | 2012-12-26 15:47:40 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-12-26 15:47:40 (GMT) |
commit | aa24468c9b6336e0f665445f5552cb09eaba9697 (patch) | |
tree | 7b74bbc39b302dd0ba010b2a9eb0ef2c0b9da7f6 /Doc/library/ftplib.rst | |
parent | c8e7e2bb76b7ebd0206e915b1d20b1cf4e6a75e1 (diff) | |
parent | c73f863a8d5718bec54b6697fc156c8b6a30ca7d (diff) | |
download | cpython-aa24468c9b6336e0f665445f5552cb09eaba9697.zip cpython-aa24468c9b6336e0f665445f5552cb09eaba9697.tar.gz cpython-aa24468c9b6336e0f665445f5552cb09eaba9697.tar.bz2 |
MERGE: Closes #16789: :meth:`quit` links to constants instead of own module
Diffstat (limited to 'Doc/library/ftplib.rst')
-rw-r--r-- | Doc/library/ftplib.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index 1419af7..abd8480 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -406,10 +406,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 |