]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-111699: Move smtpd note to dedicated section in What's New Python 3.12...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 30 Nov 2023 13:00:08 +0000 (14:00 +0100)
committerGitHub <noreply@github.com>
Thu, 30 Nov 2023 13:00:08 +0000 (13:00 +0000)
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>
Doc/whatsnew/3.12.rst
Misc/ACKS
Misc/NEWS.d/next/Documentation/2023-11-30-02-33-59.gh-issue-111699._O5G_y.rst [new file with mode: 0644]

index 845d998853eeb180c2901a4fb065e486ae15380b..f04a8052b4c7082dfe370e0a0ca68705ee5fe826 100644 (file)
@@ -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.
index df377b79c8ba6cc572a46b22f8e3f07801d58513..7438debc4af8c6848b55dcbc3e0db9f1c7372d6f 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1454,6 +1454,7 @@ Paul Prescod
 Donovan Preston
 Eric Price
 Paul Price
+Matt Prodani
 Iuliia Proskurnia
 Dorian Pula
 Jyrki Pulliainen
diff --git a/Misc/NEWS.d/next/Documentation/2023-11-30-02-33-59.gh-issue-111699._O5G_y.rst b/Misc/NEWS.d/next/Documentation/2023-11-30-02-33-59.gh-issue-111699._O5G_y.rst
new file mode 100644 (file)
index 0000000..2d31345
--- /dev/null
@@ -0,0 +1 @@
+Relocate ``smtpd`` deprecation notice to its own section rather than under ``locale`` in What's New in Python 3.12 document