This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: PEP 594: Document removal of asynchat, asyncore and smtpd
Type: Stage: resolved
Components: Documentation, Library (Lib) Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, barry, brett.cannon, docs@python, hugovk, miss-islington
Priority: normal Keywords: patch

Created on 2022-03-15 07:27 by hugovk, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 31891 merged hugovk, 2022-03-15 07:50
PR 31997 merged hugovk, 2022-03-19 20:46
PR 31998 merged hugovk, 2022-03-19 21:03
Messages (5)
msg415222 - (view) Author: Hugo van Kemenade (hugovk) * (Python triager) Date: 2022-03-15 07:27
PEP 594 – Removing dead batteries from the standard library

As mentioned in the SC acceptance:

> One thing we’d like to see happen while implementing it: Document the status of the modules being deprecated and removed and backport those deprecation updates to older CPython branch documentation (at least back to 3.9). That gets the notices in front of more people who may use the docs for their specific Python version.

So let's update documentation and deprecation warnings to make clear in which release they're to be removed.

This first one is just for the three modules (asynchat, asyncore and smtpd) slated for removal soonest, in 3.12:

https://peps.python.org/pep-0594/#deprecated-modules
msg415520 - (view) Author: miss-islington (miss-islington) Date: 2022-03-18 19:45
New changeset 77473846439b8a3eae66de1a1cfe931619f38513 by Hugo van Kemenade in branch 'main':
bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)
https://github.com/python/cpython/commit/77473846439b8a3eae66de1a1cfe931619f38513
msg415524 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2022-03-18 20:11
Merged into `main`, but the backports to 3.10 and 3.9 failed.
msg415632 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2022-03-20 20:38
New changeset 94f038cbb27dc6d1a74ae2bfedea674911f8e8c6 by Hugo van Kemenade in branch '3.10':
[3.10] bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891) (#31997)
https://github.com/python/cpython/commit/94f038cbb27dc6d1a74ae2bfedea674911f8e8c6
msg415803 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2022-03-22 18:13
New changeset af341ebf00d9a45cadea4c07810564d8e8962b96 by Hugo van Kemenade in branch '3.9':
[3.9] bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891) (#31998)
https://github.com/python/cpython/commit/af341ebf00d9a45cadea4c07810564d8e8962b96
History
Date User Action Args
2022-04-11 14:59:57adminsetgithub: 91178
2022-04-06 03:31:33brett.cannonsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2022-03-22 18:13:04brett.cannonsetmessages: + msg415803
2022-03-20 20:38:09asvetlovsetnosy: + asvetlov
messages: + msg415632
2022-03-19 21:03:41hugovksetpull_requests: + pull_request30087
2022-03-19 20:46:16hugovksetstage: backport needed -> patch review
pull_requests: + pull_request30086
2022-03-18 20:18:15AlexWaygoodsetversions: + Python 3.9, Python 3.10
nosy: + docs@python

assignee: docs@python
components: + Documentation
stage: patch review -> backport needed
2022-03-18 20:11:26brett.cannonsetnosy: + brett.cannon
messages: + msg415524
2022-03-18 19:46:22brett.cannonlinkissue47061 dependencies
2022-03-18 19:45:54miss-islingtonsetnosy: + miss-islington
messages: + msg415520
2022-03-15 15:22:02barrysetnosy: + barry
2022-03-15 07:50:40hugovksetkeywords: + patch
stage: patch review
pull_requests: + pull_request29989
2022-03-15 07:27:58hugovkcreate