diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 21:15:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 21:15:43 (GMT) |
commit | ded5f1f287674ad404ddd042745433388dc073a5 (patch) | |
tree | 5e27a6df5442dcb9e7e233b35254be974f88ad30 /Doc/library/email.generator.rst | |
parent | 684e99d01df0c7c8f7c67567e2cece4673df9432 (diff) | |
download | cpython-ded5f1f287674ad404ddd042745433388dc073a5.zip cpython-ded5f1f287674ad404ddd042745433388dc073a5.tar.gz cpython-ded5f1f287674ad404ddd042745433388dc073a5.tar.bz2 |
gh-104773: PEP 594: Remove the nntplib module (#104894)
* socket_helper.transient_internet() no longer imports nntplib to
catch nntplib.NNTPTemporaryError.
* ssltests.py no longer runs test_nntplib.
* "make quicktest" no longer runs test_nntplib.
* WASM: remove nntplib from OMIT_NETWORKING_FILES.
* Remove mentions to nntplib in the email documentation.
Diffstat (limited to 'Doc/library/email.generator.rst')
-rw-r--r-- | Doc/library/email.generator.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/email.generator.rst b/Doc/library/email.generator.rst index 34ad7b7..eb775b6 100644 --- a/Doc/library/email.generator.rst +++ b/Doc/library/email.generator.rst @@ -10,8 +10,8 @@ One of the most common tasks is to generate the flat (serialized) version of the email message represented by a message object structure. You will need to -do this if you want to send your message via :meth:`smtplib.SMTP.sendmail` or -the :mod:`nntplib` module, or print the message on the console. Taking a +do this if you want to send your message via :meth:`smtplib.SMTP.sendmail`, +or print the message on the console. Taking a message object structure and producing a serialized representation is the job of the generator classes. |