From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 6 Jun 2022 18:10:12 +0000 (-0700) Subject: Remove action=None kwarg from Barrier docs (GH-93538) (GH-93551) X-Git-Tag: v3.11.0b4~220 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a712c4b26c885d5e543891899e410e9bfa244821;p=thirdparty%2FPython%2Fcpython.git Remove action=None kwarg from Barrier docs (GH-93538) (GH-93551) (cherry picked from commit 71c8f96971ead9b09fa381392b2c2188d36b5f59) Co-authored-by: Thomas Grainger --- diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 39c666ee7b20..b87b1c54bd99 100644 --- a/Doc/library/asyncio-sync.rst +++ b/Doc/library/asyncio-sync.rst @@ -345,7 +345,7 @@ BoundedSemaphore Barrier ======= -.. class:: Barrier(parties, action=None) +.. class:: Barrier(parties) A barrier object. Not thread-safe.