summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-03-18 19:45:37 (GMT)
committerGitHub <noreply@github.com>2022-03-18 19:45:37 (GMT)
commit77473846439b8a3eae66de1a1cfe931619f38513 (patch)
tree3caee09cfda1b27a87da7dcd1df553c3873595fb /Doc/whatsnew
parent3a2b89580ded72262fbea0f7ad24096a90c42b9c (diff)
downloadcpython-77473846439b8a3eae66de1a1cfe931619f38513.zip
cpython-77473846439b8a3eae66de1a1cfe931619f38513.tar.gz
cpython-77473846439b8a3eae66de1a1cfe931619f38513.tar.bz2
bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)
Document the deprecation of asyncore, asynchat, and smtpd with a slated removal in Python 3.12 thanks to PEP 594.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.11.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 2af6638..8b3450e 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -555,6 +555,11 @@ Deprecated
:func:`locale.getlocale` functions instead.
(Contributed by Victor Stinner in :issue:`46659`.)
+* The :mod:`asynchat`, :mod:`asyncore` and :mod:`smtpd` modules have been
+ deprecated since at least Python 3.6. Their documentation and deprecation
+ warnings have now been updated to note they will removed in Python 3.12
+ (:pep:`594`).
+ (Contributed by Hugo van Kemenade in :issue:`47022`.)
Removed
=======