]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-101359: clarify docs for `asyncio.Event.clear` (GH-137849) (#137850)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 29 Aug 2025 04:37:39 +0000 (06:37 +0200)
committerGitHub <noreply@github.com>
Fri, 29 Aug 2025 04:37:39 +0000 (07:37 +0300)
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()