]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-111699: Move smtpd note to dedicated section in What's New Python 3.12 doc (GH...
authorMatt Prodani <mp5908@nyu.edu>
Thu, 30 Nov 2023 12:53:19 +0000 (07:53 -0500)
committerGitHub <noreply@github.com>
Thu, 30 Nov 2023 12:53:19 +0000 (14:53 +0200)
Relocate smtpd deprecation notice to it's own section rather than under
'locale' in docs for What's New in Python 3.12 doc

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 a4b3a6d12970b47667a9664cd2e8d40de987d807..96893527cc91ed288d87b8ea832082145d476a47 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 5fe3a177a262925c0b8e37ce4d050fbfbf5d1aaa..1c67d96ed3a528d4be162d5f1efe0e8dbac9d6b5 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1459,6 +1459,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