]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 16 Mar 2026 20:59:03 +0000 (21:59 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Mar 2026 20:59:03 +0000 (21:59 +0100)
Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035)
(cherry picked from commit 4e96282ee42ab51cf325b52a0173ddddbe66c05c)

Co-authored-by: trag1c <dev@jakubr.me>
Doc/library/asyncio-task.rst

index 3465f0c09ae41740e484f5e8d4429a4120d54492..d5a496e64ec9d8fb044f3c0109b17771a869d664 100644 (file)
@@ -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: