https://github.com/python/cpython/commit/294e5637538063025c4f5af8fe74667b74f00cea commit: 294e5637538063025c4f5af8fe74667b74f00cea branch: 3.15 author: Miss Islington (bot) <[email protected]> committer: tomasr8 <[email protected]> date: 2026-07-18T14:19:35+02:00 summary:
[3.15] Fix duplicated words in the 'Coroutines and tasks' documentation (GH-153880) (#153886) Fix duplicated words in the 'Coroutines and tasks' documentation (GH-153880) (cherry picked from commit cffcee4d1bc9d49b5b45e2e792dd8aea7b6c65eb) Co-authored-by: Michael Newman <[email protected]> files: M Doc/library/asyncio-task.rst diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index d0cd241e42db26..86b8c5aa34d2fe 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -377,7 +377,7 @@ and reliable way to wait for all tasks in the group to finish. * call it from the task group body based on some condition or event * pass the task group instance to child tasks via :meth:`create_task`, allowing a child - task to conditionally cancel the entire entire group + task to conditionally cancel the entire group * pass the task group instance or bound :meth:`cancel` method to some other task *before* opening the task group, allowing remote cancellation _______________________________________________ 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]
