https://github.com/python/cpython/commit/e3a2d99f98bcee6f0c43f4a8ac0a841ded622f6c commit: e3a2d99f98bcee6f0c43f4a8ac0a841ded622f6c branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: picnixz <[email protected]> date: 2026-03-16T21:59:03+01:00 summary:
[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 <[email protected]> files: M Doc/library/asyncio-task.rst diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 3465f0c09ae417..d5a496e64ec9d8 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: _______________________________________________ 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]
