From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Mar 2026 20:59:31 +0000 (+0100) Subject: [3.14] Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035... X-Git-Tag: v3.14.4~126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e050831bd9fa935051563b7e3de43288c2718b2a;p=thirdparty%2FPython%2Fcpython.git [3.14] Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035) (#146037) Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035) (cherry picked from commit 4e96282ee42ab51cf325b52a0173ddddbe66c05c) Co-authored-by: trag1c --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 5331db04aeb5..de2b2d9c1e96 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -557,7 +557,7 @@ Running Tasks Concurrently provides stronger safety guarantees than *gather* for scheduling a nesting of subtasks: if a task (or a subtask, a task scheduled by a task) raises an exception, *TaskGroup* will, while *gather* will not, - cancel the remaining scheduled tasks). + cancel the remaining scheduled tasks. .. _asyncio_example_gather: