summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-30 13:00:08 (GMT)
committerGitHub <noreply@github.com>2023-11-30 13:00:08 (GMT)
commit4c9da4c964a62c2972fa40b30ab11f19f89178f4 (patch)
tree5a30c2f20917028ee755affe2fe8de099f800247 /Doc
parent46adf6b701c440e047abf925df9a75aae50233bf (diff)
downloadcpython-4c9da4c964a62c2972fa40b30ab11f19f89178f4.zip
cpython-4c9da4c964a62c2972fa40b30ab11f19f89178f4.tar.gz
cpython-4c9da4c964a62c2972fa40b30ab11f19f89178f4.tar.bz2
[3.12] gh-111699: Move smtpd note to dedicated section in What's New Python 3.12 doc (GH-112544) (GH-112552)
Relocate smtpd deprecation notice to it's own section rather than under 'locale' in docs for What's New in Python 3.12 doc (cherry picked from commit 1ff212debdc094c28928011cff9f4eea8de34d44) Co-authored-by: Matt Prodani <mp5908@nyu.edu>
Diffstat (limited to 'Doc')
-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 845d998..f04a805 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.