]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-101359: clarify docs for `asyncio.Event.clear` (GH-137849) (#137851)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 16 Aug 2025 10:59:26 +0000 (12:59 +0200)
committerGitHub <noreply@github.com>
Sat, 16 Aug 2025 10:59:26 +0000 (16:29 +0530)
gh-101359: clarify docs for `asyncio.Event.clear` (GH-137849)
(cherry picked from commit 4b2dbe8e0aa35046622f87dec1fa42da4d2deb2d)

Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Doc/library/asyncio-sync.rst

index 968c812ee3c8e6fc1b39eb0e5c2e6bd5f81fa850..f9e98e05cab7aca9be576234816767897557daa8 100644 (file)
@@ -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()