summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.12.rst
diff options
context:
space:
mode:
authorMatt Prodani <mp5908@nyu.edu>2023-11-30 12:53:19 (GMT)
committerGitHub <noreply@github.com>2023-11-30 12:53:19 (GMT)
commit1ff212debdc094c28928011cff9f4eea8de34d44 (patch)
treefb6cce15fb043395c100a6eb12eb78a44f8bfb77 /Doc/whatsnew/3.12.rst
parent07ebd46f9e55ed2f18c5ea2a79ec5054bc26b915 (diff)
downloadcpython-1ff212debdc094c28928011cff9f4eea8de34d44.zip
cpython-1ff212debdc094c28928011cff9f4eea8de34d44.tar.gz
cpython-1ff212debdc094c28928011cff9f4eea8de34d44.tar.bz2
gh-111699: Move smtpd note to dedicated section in What's New Python 3.12 doc (GH-112544)
Relocate smtpd deprecation notice to it's own section rather than under 'locale' in docs for What's New in Python 3.12 doc
Diffstat (limited to 'Doc/whatsnew/3.12.rst')
-rw-r--r--Doc/whatsnew/3.12.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index a4b3a6d..9689352 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -1640,7 +1640,10 @@ locale
use :func:`locale.format_string` instead.
(Contributed by Victor Stinner in :gh:`94226`.)
-* ``smtpd``: The module has been removed according to the schedule in :pep:`594`,
+smtpd
+-----
+
+* The ``smtpd`` module has been removed according to the schedule in :pep:`594`,
having been deprecated in Python 3.4.7 and 3.5.4.
Use aiosmtpd_ PyPI module or any other
:mod:`asyncio`-based server instead.