From efe9ee38e6bd4968e860ad8a7094df5acff36c57 Mon Sep 17 00:00:00 2001 From: trag1c Date: Mon, 16 Mar 2026 20:55:29 +0100 Subject: [PATCH] Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035) (cherry picked from commit 4e96282ee42ab51cf325b52a0173ddddbe66c05c) Co-authored-by: trag1c --- Doc/library/asyncio-task.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 5331db04aeb514..de2b2d9c1e96d0 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: