https://github.com/python/cpython/commit/e050831bd9fa935051563b7e3de43288c2718b2a commit: e050831bd9fa935051563b7e3de43288c2718b2a branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: picnixz <[email protected]> date: 2026-03-16T21:59:31+01:00 summary:
[3.14] Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035) (#146037) Docs: remove unmatched parenthesis for `asyncio.TaskGroup` note (GH-146035) (cherry picked from commit 4e96282ee42ab51cf325b52a0173ddddbe66c05c) Co-authored-by: trag1c <[email protected]> files: M Doc/library/asyncio-task.rst 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: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
