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.Event.wait broken link from asyncio.Event
Type: Stage: resolved
Components: Documentation Versions: Python 3.10, Python 3.9, Python 3.8, Python 3.7, Python 3.6, Python 3.5
process
Status: closed Resolution: duplicate
Dependencies: Superseder: Asyncio Event Documentation Links Incorrect
View: 42703
Assigned To: docs@python Nosy List: bjs, docs@python, graingert, vstinner
Priority: normal Keywords: patch

Created on 2020-08-31 13:54 by graingert, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22029 closed graingert, 2020-08-31 14:04
Messages (3)
msg376153 - (view) Author: Thomas Grainger (graingert) * Date: 2020-08-31 13:54
https://docs.python.org/dev/library/asyncio-sync.html#asyncio.Event links to https://docs.python.org/dev/library/asyncio-task.html#asyncio.wait instead of https://docs.python.org/dev/library/asyncio-sync.html#asyncio.Event.wait
msg376154 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-08-31 13:55
Do you want to propose a documentation fix?
msg376155 - (view) Author: Ben (bjs) * Date: 2020-08-31 14:01
looking at the source https://raw.githubusercontent.com/python/cpython/3.8/Doc/library/asyncio-sync.rst  it says :meth:`wait`  just like the surrounding methods and surrounding types, which all work. 

Maybe :meth:`Event.wait` would fix?   But why :meth:`wait` didn't work is not obvious to me?
History
Date User Action Args
2022-04-11 14:59:35adminsetgithub: 85842
2021-07-05 08:31:57erlendaaslandsetstatus: open -> closed
superseder: Asyncio Event Documentation Links Incorrect
resolution: duplicate
stage: patch review -> resolved
2020-08-31 14:04:07graingertsetkeywords: + patch
stage: patch review
pull_requests: + pull_request21129
2020-08-31 14:01:57bjssetmessages: + msg376155
2020-08-31 13:55:28bjssetnosy: + bjs
2020-08-31 13:55:28vstinnersetnosy: + vstinner
messages: + msg376154
2020-08-31 13:54:37graingertcreate