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: Document that asyncio's wait() and as_completed() accept arbitrary iterables
Type: Stage: resolved
Components: asyncio Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, jstasiak, miss-islington, yselivanov
Priority: normal Keywords: patch

Created on 2020-11-01 12:17 by jstasiak, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 23073 merged jstasiak, 2020-11-01 12:23
PR 23104 merged miss-islington, 2020-11-02 10:56
PR 23105 merged jstasiak, 2020-11-02 11:10
Messages (4)
msg380128 - (view) Author: Jakub Stasiak (jstasiak) * Date: 2020-11-01 12:17
The documentation explicitly says "sets" but arbitrary iterables are accepted and various non-sets are passed to those in real world almost certainly.
msg380206 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2020-11-02 10:56
New changeset 3d86d090dcbbdfdd3e5a5951cab30612d6131222 by Jakub Stasiak in branch 'master':
bpo-42230: Improve asyncio documentation regarding accepting sets vs iterables (GH-23073)
https://github.com/python/cpython/commit/3d86d090dcbbdfdd3e5a5951cab30612d6131222
msg380207 - (view) Author: miss-islington (miss-islington) Date: 2020-11-02 11:19
New changeset ff852aabf22908e7ef0325af65bab5d02c421fd8 by Miss Skeleton (bot) in branch '3.9':
bpo-42230: Improve asyncio documentation regarding accepting sets vs iterables (GH-23073)
https://github.com/python/cpython/commit/ff852aabf22908e7ef0325af65bab5d02c421fd8
msg380208 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2020-11-02 11:36
New changeset ad37c66adcd474e3d42a51c63ecb6a54ca2d23f2 by Jakub Stasiak in branch '3.8':
[3.8] bpo-42230: Improve asyncio documentation regarding accepting sets vs iterables (GH-23073) (GH-23105)
https://github.com/python/cpython/commit/ad37c66adcd474e3d42a51c63ecb6a54ca2d23f2
History
Date User Action Args
2022-04-11 14:59:37adminsetgithub: 86396
2020-11-02 11:37:05asvetlovsetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: - Python 3.6, Python 3.7
2020-11-02 11:36:46asvetlovsetmessages: + msg380208
2020-11-02 11:19:53miss-islingtonsetmessages: + msg380207
2020-11-02 11:10:42jstasiaksetpull_requests: + pull_request22022
2020-11-02 10:56:50miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request22021
2020-11-02 10:56:50asvetlovsetmessages: + msg380206
2020-11-01 12:23:24jstasiaksetkeywords: + patch
stage: patch review
pull_requests: + pull_request21993
2020-11-01 12:17:01jstasiakcreate