From 6dfa07d1bc319b6500a1734a506c312aeaa00b7e Mon Sep 17 00:00:00 2001 From: Kumar Aditya Date: Sat, 16 Aug 2025 16:20:54 +0530 Subject: [PATCH] gh-101359: clarify docs for `asyncio.Event.clear` (GH-137849) (cherry picked from commit 4b2dbe8e0aa35046622f87dec1fa42da4d2deb2d) Co-authored-by: Kumar Aditya --- Doc/library/asyncio-sync.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()