I was reading asyncio documentation for task cancel and I came across this -
To cancel a running Task use the cancel() method. Calling it will cause the Task to throw a CancelledError exception into the wrapped coroutine. If a coroutine is awaiting on a Future object during cancellation, the Future object will be cancelled.
cancelled() can be used to check if the Task was cancelled. The method returns True if the wrapped coroutine did not suppress the CancelledError exception and was actually cancelled.
I have a few questions here -
Is wrapped coroutine the coroutine in which cancel is called? Let's take an example here -
async def wrapped_coroutine(): for task in asyncio.Task.all_tasks(): task.cancel()
So
wrapped_coroutine()
is the wrapped coroutine where task will throw an exception?When will this exception be thrown? And where?
What does suppress the exception mean here? Does it mean this -
async def wrapped_coroutine(): for task in asyncio.Task.all_tasks(): task.cancel() try: await task except asyncio.CancelledError: print("Task cancelled")
If not, please provide an example on how to suppress this exception.
And an unrelated(it's related to cancelling tasks), how do I retrieve exceptions out of these tasks when I'm cancelling these so I don't see this -
Task exception was never retrieved future:
Is it before task.cancel()
or in try
before await task
(in the above example) ?