diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-06 17:03:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 17:03:22 (GMT) |
commit | f6c2b04d029e3ce547fb687fc4b6d30755d989a6 (patch) | |
tree | d6c0d57b28a2a99306566a6def7574a3647f4928 /Doc | |
parent | 11888a8694b4a2a20f0b27d046085ff9e6fa9171 (diff) | |
download | cpython-f6c2b04d029e3ce547fb687fc4b6d30755d989a6.zip cpython-f6c2b04d029e3ce547fb687fc4b6d30755d989a6.tar.gz cpython-f6c2b04d029e3ce547fb687fc4b6d30755d989a6.tar.bz2 |
[3.12] Fix typo in Doc/library/asyncio-task.rst (GH-118627) (#118657)
Fix typo in Doc/library/asyncio-task.rst (GH-118627)
(cherry picked from commit fc50f1bdbad3aa52d7cbd3cb836a35806266ec54)
Co-authored-by: Xie Yanbo <xieyanbo@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio-task.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index a964c8b..bb41f7e 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -1320,7 +1320,7 @@ Task Object with :meth:`uncancel`. :class:`TaskGroup` context managers use :func:`uncancel` in a similar fashion. - If end-user code is, for some reason, suppresing cancellation by + If end-user code is, for some reason, suppressing cancellation by catching :exc:`CancelledError`, it needs to call this method to remove the cancellation state. |