diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2022-03-20 20:38:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-20 20:38:01 (GMT) |
commit | 94f038cbb27dc6d1a74ae2bfedea674911f8e8c6 (patch) | |
tree | 4b80f7c7bec8b0ed8134f4924ddf4238a40354d0 /Doc/library/asynchat.rst | |
parent | 4352ca234e979ad1c7158981addf899b119cd448 (diff) | |
download | cpython-94f038cbb27dc6d1a74ae2bfedea674911f8e8c6.zip cpython-94f038cbb27dc6d1a74ae2bfedea674911f8e8c6.tar.gz cpython-94f038cbb27dc6d1a74ae2bfedea674911f8e8c6.tar.bz2 |
[3.10] bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891) (#31997)
Document the deprecation of asyncore, asynchat, and smtpd with a slated removal in Python 3.12 thanks to PEP 594..
(cherry picked from commit 77473846439b8a3eae66de1a1cfe931619f38513)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc/library/asynchat.rst')
-rw-r--r-- | Doc/library/asynchat.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/asynchat.rst b/Doc/library/asynchat.rst index 9e51416..4354444 100644 --- a/Doc/library/asynchat.rst +++ b/Doc/library/asynchat.rst @@ -3,6 +3,7 @@ .. module:: asynchat :synopsis: Support for asynchronous command/response protocols. + :deprecated: .. moduleauthor:: Sam Rushing <rushing@nightmare.com> .. sectionauthor:: Steve Holden <sholden@holdenweb.com> @@ -10,6 +11,7 @@ **Source code:** :source:`Lib/asynchat.py` .. deprecated:: 3.6 + :mod:`asynchat` will be removed in Python 3.12 (:pep:`594`). Please use :mod:`asyncio` instead. -------------- |