diff options
author | takey <taketakeyyy@gmail.com> | 2018-11-23 16:53:24 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-23 16:53:24 (GMT) |
commit | ba57963a95a994947b8bec6869e810a74a751278 (patch) | |
tree | cd5891584373bec14d2cd3665fbec29d1a1268f2 /Doc | |
parent | e421106b9e4d780c083113e4180d58d68acc69ab (diff) | |
download | cpython-ba57963a95a994947b8bec6869e810a74a751278.zip cpython-ba57963a95a994947b8bec6869e810a74a751278.tar.gz cpython-ba57963a95a994947b8bec6869e810a74a751278.tar.bz2 |
Linkify SMTP.quit() in smtplib documentation. (GH-9785)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/smtplib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst index 6fb0934..f59c184 100644 --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -41,7 +41,7 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions). the OS default behavior will be used. For normal use, you should only require the initialization/connect, - :meth:`sendmail`, and :meth:`~smtplib.quit` methods. + :meth:`sendmail`, and :meth:`SMTP.quit` methods. An example is included below. The :class:`SMTP` class supports the :keyword:`with` statement. When used |