Skip to content

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/asyncio-sync.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Contributor Author

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?

flag is set to *true*. The flag is set to *false* initially.


Expand Down Expand Up @@ -155,7 +155,7 @@ Event

Clear (unset) the event.

Tasks awaiting on :meth:`wait` will now block until the
Tasks awaiting on :meth:`~asyncio.Event.wait` will now block until the
:meth:`set` method is called again.

.. method:: is_set()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix links to `asyncio.Event.wait`
Copy link
Member

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".