From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 29 Aug 2025 04:37:39 +0000 (+0200) Subject: [3.14] gh-101359: clarify docs for `asyncio.Event.clear` (GH-137849) (#137850) X-Git-Tag: v3.14.0rc3~115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=769f58a82832bbe156a900c8577612c33ec493ea;p=thirdparty%2FPython%2Fcpython.git [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 --- diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 968c812ee3c8..f9e98e05cab7 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()