summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-05-23 07:09:02 (GMT)
committerGitHub <noreply@github.com>2023-05-23 07:09:02 (GMT)
commit9dc476be2dcfc9bcf53bcb83f4b8d555682d0600 (patch)
treedb33d9ec6128dc46eede9b21d92d7772d4422656 /Misc
parent5ecd8c85f934e13a5ff98db6539d89e0c7c03f2d (diff)
downloadcpython-9dc476be2dcfc9bcf53bcb83f4b8d555682d0600.zip
cpython-9dc476be2dcfc9bcf53bcb83f4b8d555682d0600.tar.gz
cpython-9dc476be2dcfc9bcf53bcb83f4b8d555682d0600.tar.bz2
gh-104773: PEP 594: Remove the telnetlib module (#104778)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/3.9.0a1.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2023-05-23-02-20-13.gh-issue-104773.7K59zr.rst2
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.9.0a1.rst b/Misc/NEWS.d/3.9.0a1.rst
index 0888a5c..7da4385 100644
--- a/Misc/NEWS.d/3.9.0a1.rst
+++ b/Misc/NEWS.d/3.9.0a1.rst
@@ -99,7 +99,7 @@ after whitespace, e.g. '127.0.0.1 whatever'.
Adds audit events for :mod:`ensurepip`, :mod:`ftplib`, :mod:`glob`,
:mod:`imaplib`, :mod:`nntplib`, :mod:`pdb`, :mod:`poplib`, :mod:`shutil`,
-:mod:`smtplib`, :mod:`sqlite3`, :mod:`subprocess`, :mod:`telnetlib`,
+:mod:`smtplib`, :mod:`sqlite3`, :mod:`subprocess`, :mod:`!telnetlib`,
:mod:`tempfile` and :mod:`webbrowser`, as well as :func:`os.listdir`,
:func:`os.scandir` and :func:`breakpoint`.
diff --git a/Misc/NEWS.d/next/Library/2023-05-23-02-20-13.gh-issue-104773.7K59zr.rst b/Misc/NEWS.d/next/Library/2023-05-23-02-20-13.gh-issue-104773.7K59zr.rst
new file mode 100644
index 0000000..0f3162e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-05-23-02-20-13.gh-issue-104773.7K59zr.rst
@@ -0,0 +1,2 @@
+:pep:`594`: Remove the :mod:`!telnetlib` module, deprecated in Python 3.11.
+Patch by Victor Stinner.