https://github.com/python/cpython/commit/769f58a82832bbe156a900c8577612c33ec493ea commit: 769f58a82832bbe156a900c8577612c33ec493ea branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-08-29T07:37:39+03:00 summary:
[3.14] gh-101359: clarify docs for `asyncio.Event.clear` (GH-137849) (#137850) gh-101359: clarify docs for `asyncio.Event.clear` (GH-137849) (cherry picked from commit 4b2dbe8e0aa35046622f87dec1fa42da4d2deb2d) Co-authored-by: Kumar Aditya <[email protected]> files: M Doc/library/asyncio-sync.rst diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 968c812ee3c8e6..f9e98e05cab7ac 100644 --- a/Doc/library/asyncio-sync.rst +++ b/Doc/library/asyncio-sync.rst @@ -157,7 +157,7 @@ Event Clear (unset) the event. - Tasks awaiting on :meth:`~Event.wait` will now block until the + Subsequent tasks awaiting on :meth:`~Event.wait` will now block until the :meth:`~Event.set` method is called again. .. method:: is_set() _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
