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: AbstractEventLoop.call_* should reflect the 'context' argument
Type: behavior Stage: resolved
Components: asyncio Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, kumaraditya, miss-islington, yselivanov
Priority: normal Keywords: patch

Created on 2022-01-06 11:36 by asvetlov, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30427 merged asvetlov, 2022-01-06 11:39
PR 30430 merged kumaraditya, 2022-01-06 12:51
PR 30428 merged miss-islington, 2022-01-06 12:54
PR 30429 merged miss-islington, 2022-01-06 13:03
PR 30431 merged miss-islington, 2022-01-06 13:21
PR 30432 merged miss-islington, 2022-01-06 13:21
Messages (5)
msg409829 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2022-01-06 11:36
Actual implementations of asyncio event loops (both Unix and Windows) support contextvars and accept `context` argument in `loop.call_*()` methods.

Abstract event loop definition doesn't it. It is not a bug but a signature incompatibility that can embarrass human readers and machine analyzing tools.
msg409837 - (view) Author: Kumar Aditya (kumaraditya) * (Python triager) Date: 2022-01-06 12:47
The PR introduced a typo in the method signature see https://github.com/python/cpython/pull/30427#discussion_r779497305
msg409843 - (view) Author: miss-islington (miss-islington) Date: 2022-01-06 13:21
New changeset b50e5e916a05df65ab6a255af7624b751e0fe9d1 by Kumar Aditya in branch 'main':
bpo-46278: fix typo introduced in GH-30427 (GH-30430)
https://github.com/python/cpython/commit/b50e5e916a05df65ab6a255af7624b751e0fe9d1
msg409846 - (view) Author: miss-islington (miss-islington) Date: 2022-01-06 13:51
New changeset cb0683128b8f413e0f16293752014902d4de4984 by Miss Islington (bot) in branch '3.9':
bpo-46278: fix typo introduced in GH-30427 (GH-30430)
https://github.com/python/cpython/commit/cb0683128b8f413e0f16293752014902d4de4984
msg409852 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2022-01-06 14:44
New changeset 861a9aaf0f517623c58ca4eb5588804b2632fcba by Miss Islington (bot) in branch '3.10':
bpo-46278: fix typo introduced in GH-30427 (GH-30430) (GH-30431)
https://github.com/python/cpython/commit/861a9aaf0f517623c58ca4eb5588804b2632fcba
History
Date User Action Args
2022-04-11 14:59:54adminsetgithub: 90436
2022-01-06 14:44:55asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2022-01-06 14:44:30asvetlovsetmessages: + msg409852
2022-01-06 13:51:48miss-islingtonsetmessages: + msg409846
2022-01-06 13:21:46miss-islingtonsetpull_requests: + pull_request28638
2022-01-06 13:21:43miss-islingtonsetmessages: + msg409843
2022-01-06 13:21:37miss-islingtonsetpull_requests: + pull_request28637
2022-01-06 13:03:04miss-islingtonsetpull_requests: + pull_request28636
2022-01-06 12:54:32miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request28635
2022-01-06 12:51:30kumaradityasetpull_requests: + pull_request28634
2022-01-06 12:47:44kumaradityasetnosy: + kumaraditya
messages: + msg409837
2022-01-06 11:39:25asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request28633
2022-01-06 11:36:38asvetlovsettype: behavior
2022-01-06 11:36:22asvetlovsetnosy: + yselivanov

components: + asyncio
versions: + Python 3.9, Python 3.10, Python 3.11
2022-01-06 11:36:02asvetlovcreate