summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncore.rst
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/library/asyncore.rst
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/library/asyncore.rst')
-rw-r--r--Doc/library/asyncore.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst
index a86518e..e481e13 100644
--- a/Doc/library/asyncore.rst
+++ b/Doc/library/asyncore.rst
@@ -4,6 +4,7 @@
.. module:: asyncore
:synopsis: A base class for developing asynchronous socket handling
services.
+ :deprecated:
.. moduleauthor:: Sam Rushing <rushing@nightmare.com>
.. sectionauthor:: Christopher Petrilli <petrilli@amber.org>
@@ -13,6 +14,7 @@
**Source code:** :source:`Lib/asyncore.py`
.. deprecated:: 3.6
+ :mod:`asyncore` will be removed in Python 3.12 (:pep:`594`).
Please use :mod:`asyncio` instead.
--------------