mirror of
https://github.com/python/cpython.git
synced 2025-11-08 21:52:45 +00:00
MERGE: Closes #16789: :meth:quit links to constants instead of own module
This commit is contained in:
commit
aa24468c9b
3 changed files with 7 additions and 6 deletions
|
|
@ -406,10 +406,10 @@ followed by ``lines`` for the text version or ``binary`` for the binary version.
|
||||||
.. method:: FTP.close()
|
.. method:: FTP.close()
|
||||||
|
|
||||||
Close the connection unilaterally. This should not be applied to an already
|
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
|
closed connection such as after a successful call to :meth:`~FTP.quit`.
|
||||||
call the :class:`FTP` instance should not be used any more (after a call to
|
After this call the :class:`FTP` instance should not be used any more (after
|
||||||
:meth:`close` or :meth:`quit` you cannot reopen the connection by issuing
|
a call to :meth:`close` or :meth:`~FTP.quit` you cannot reopen the
|
||||||
another :meth:`login` method).
|
connection by issuing another :meth:`login` method).
|
||||||
|
|
||||||
|
|
||||||
FTP_TLS Objects
|
FTP_TLS Objects
|
||||||
|
|
|
||||||
|
|
@ -105,7 +105,7 @@ An :class:`POP3` instance has the following methods:
|
||||||
.. method:: POP3.pass_(password)
|
.. method:: POP3.pass_(password)
|
||||||
|
|
||||||
Send password, response includes message count and mailbox size. Note: the
|
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)
|
.. method:: POP3.apop(user, secret)
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,8 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions).
|
||||||
behavior will be used.
|
behavior will be used.
|
||||||
|
|
||||||
For normal use, you should only require the initialization/connect,
|
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.
|
||||||
|
|
||||||
The :class:`SMTP` class supports the :keyword:`with` statement. When used
|
The :class:`SMTP` class supports the :keyword:`with` statement. When used
|
||||||
like this, the SMTP ``QUIT`` command is issued automatically when the
|
like this, the SMTP ``QUIT`` command is issued automatically when the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue