From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Mar 2026 20:59:03 +0000 (+0100) Subject: [3.13] Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035... X-Git-Tag: v3.13.13~83 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3a2d99f98bcee6f0c43f4a8ac0a841ded622f6c;p=thirdparty%2FPython%2Fcpython.git [3.13] Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035) (#146038) 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 3465f0c09ae4..d5a496e64ec9 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -544,7 +544,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: