-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
bpo-41676: fix links to asyncio.Event.wait
#22029
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fixes bpo-41676
@@ -105,7 +105,7 @@ Event | |||
|
|||
An Event object manages an internal flag that can be set to *true* | |||
with the :meth:`set` method and reset to *false* with the | |||
:meth:`clear` method. The :meth:`wait` method blocks until the | |||
:meth:`clear` method. The :meth:`~asyncio.Event.wait` method blocks until the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is odd, right? is this a sphinx bug?
asyncio.Event.wait
asyncio.Event.wait
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@fochoao I don't think this is the correct pull request |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@@ -0,0 +1 @@ | |||
fix links to `asyncio.Event.wait` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit cryptic for a news entry (fixed links where?)
I'm not sure a news entry is needed for this, but if it is then maybe something like "Fixed broken links in asyncio documentation".
Fixed by #23881. |
Fixes bpo-41676
https://bugs.python.org/issue41676