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 /Makefile.pre.in | |
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 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index c24e8aa..b277092 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1873,7 +1873,7 @@ QUICKTESTOPTS= $(TESTOPTS) -x test_subprocess test_io \ test_multibytecodec test_urllib2_localnet test_itertools \ test_multiprocessing_fork test_multiprocessing_spawn \ test_multiprocessing_forkserver \ - test_mailbox test_nntplib test_socket test_poll \ + test_mailbox test_socket test_poll \ test_select test_zipfile test_concurrent_futures .PHONY: quicktest |