mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky
Kok.
This commit is contained in:
parent
66f2928479
commit
8d21357fb5
2 changed files with 23 additions and 3 deletions
|
@ -269,9 +269,9 @@ class Task(futures.Future):
|
|||
print(line, file=file, end='')
|
||||
|
||||
def cancel(self):
|
||||
"""Request that a task to cancel itself.
|
||||
"""Request this task to cancel itself.
|
||||
|
||||
This arranges for a CancellationError to be thrown into the
|
||||
This arranges for a CancelledError to be thrown into the
|
||||
wrapped coroutine on the next cycle through the event loop.
|
||||
The coroutine then has a chance to clean up or even deny
|
||||
the request using try/except/finally.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue