[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-23 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-23 Thread miss-islington
miss-islington added the comment: New changeset 412c935a37eb8fe290b684c44c80cf361f6b814b by Miss Islington (bot) in branch '3.8': BPO-42703: Fix incorrect documentation links for asyncio.Event (GH-23881) https://github.com/python/cpython/commit/412c935a37eb8fe290b684c44c80cf361f6b814b -

[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-23 Thread miss-islington
miss-islington added the comment: New changeset 1e1bacf9e61143e7b0f78de9dcb578983bea8f81 by Miss Islington (bot) in branch '3.9': BPO-42703: Fix incorrect documentation links for asyncio.Event (GH-23881) https://github.com/python/cpython/commit/1e1bacf9e61143e7b0f78de9dcb578983bea8f81 -

[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +22762 pull_request: https://github.com/python/cpython/pull/23909 ___ Python tracker ___ __

[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-23 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +22761 pull_request: https://github.com/python/cpython/pull/23908 ___ Python tracker _

[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset d90ff376813843310a6f9ccc96551fa1521e8fef by Matt Fowler in branch 'master': BPO-42703: Fix incorrect documentation links for asyncio.Event (GH-23881) https://github.com/python/cpython/commit/d90ff376813843310a6f9ccc96551fa1521e8fef --

[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-21 Thread Matt Fowler
Change by Matt Fowler : -- keywords: +patch pull_requests: +22741 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23881 ___ Python tracker ___

[issue42703] Asyncio Event Documentation Links Incorrect

2020-12-21 Thread Matt Fowler
New submission from Matt Fowler : The documentation for `asyncio.Event` has incorrect links. The `wait` coroutine incorrectly links to the docs for the `asyncio.wait` waiting primitive, and the `set` method incorrectly links to the docs for the `set` class constructor. -- assignee: do