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: avoid try 1000 in asyncio all_tasks by making weak collection .copy() atomic
Type: Stage: patch review
Components: asyncio, Interpreter Core Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, graingert, yselivanov
Priority: normal Keywords: patch

Created on 2021-09-24 08:10 by graingert, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 28541 open graingert, 2021-09-24 08:17
Messages (1)
msg402544 - (view) Author: Thomas Grainger (graingert) * Date: 2021-09-24 08:10
the weak collections should have the same threadsafe/thread unsafe guarantees as their strong reference counterparts - eg dict.copy and set.copy are atomic and so the weak versions should be atomic also
History
Date User Action Args
2022-04-11 14:59:50adminsetgithub: 89439
2021-09-24 08:17:16graingertsetkeywords: + patch
stage: patch review
pull_requests: + pull_request26925
2021-09-24 08:10:36graingertcreate