]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (#146035)
authortrag1c <dev@jakubr.me>
Mon, 16 Mar 2026 19:55:29 +0000 (20:55 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Mar 2026 19:55:29 +0000 (20:55 +0100)
Doc/library/asyncio-task.rst

index 1b7c8ff0c762a6c4a11753ab53b805c24ac1378b..e2a6752be12b670dfbd8d8b97a6b8fc272a24c92 100644 (file)
@@ -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: