From: trag1c Date: Mon, 16 Mar 2026 19:55:29 +0000 (+0100) Subject: Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (#146035) X-Git-Tag: v3.15.0a8~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e96282ee42ab51cf325b52a0173ddddbe66c05c;p=thirdparty%2FPython%2Fcpython.git Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (#146035) --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 1b7c8ff0c762..e2a6752be12b 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: