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: Remove asyncio._all_tasks_compat()
Type: enhancement Stage: resolved
Components: asyncio Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, serhiy.storchaka, yselivanov
Priority: normal Keywords: patch

Created on 2020-12-06 15:30 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 23664 merged serhiy.storchaka, 2020-12-06 15:46
Messages (2)
msg382597 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-12-06 15:30
It was only used in _asynciomodule.c to implement now removed Task.all_tasks() method (see issue40967).
msg382601 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-12-06 16:55
New changeset 8a62887dfb4bb2835048780ad673362f7ee3c7bf by Serhiy Storchaka in branch 'master':
bpo-42582: Remove asyncio._all_tasks_compat(). (GH-23664)
https://github.com/python/cpython/commit/8a62887dfb4bb2835048780ad673362f7ee3c7bf
History
Date User Action Args
2022-04-11 14:59:39adminsetgithub: 86748
2020-12-06 18:39:44serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-12-06 16:55:06serhiy.storchakasetmessages: + msg382601
2020-12-06 15:46:06serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request22531
2020-12-06 15:30:01serhiy.storchakacreate