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: asyncio.coroutine documented as removed in 3.10
Type: Stage: resolved
Components: asyncio, Documentation Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Zabolekar, asvetlov, docs@python, yselivanov
Priority: normal Keywords: easy, patch

Created on 2021-12-10 18:28 by Zabolekar, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30061 merged asvetlov, 2021-12-11 18:03
Messages (2)
msg408240 - (view) Author: Stanislav Syekirin (Zabolekar) Date: 2021-12-10 18:28
https://docs.python.org/3.10/library/asyncio-task.html#generator-based-coroutines

This page says about asyncio.coroutine:

    Deprecated since version 3.8, removed in version 3.10

However, asyncio.coroutine is still working in 3.10 and has been removed, as far as I can see, here: https://bugs.python.org/issue43216.
msg408329 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2021-12-11 18:28
New changeset 991736697dff693b6c9f8964bb7540081bbf4ddb by Andrew Svetlov in branch '3.10':
[3.10] bpo-46040: Fix removal text for @asyncio.coroutine (GH-30061)
https://github.com/python/cpython/commit/991736697dff693b6c9f8964bb7540081bbf4ddb
History
Date User Action Args
2022-04-11 14:59:53adminsetgithub: 90198
2021-12-11 18:28:26asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-12-11 18:28:07asvetlovsetmessages: + msg408329
2021-12-11 18:03:46asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request28281
2021-12-11 16:58:12kjsetkeywords: + easy
2021-12-11 16:28:40iritkatrielsetnosy: + asvetlov, yselivanov
components: + asyncio
2021-12-10 18:28:22Zabolekarcreate