New submission from pyneda <rogerpined...@gmail.com>:

A possible use case (that at least I couldn't find how to solve) is the 
possibility to cancel a bunch of futures/coroutine objects which are being 
awaited using asyncio.tasks.wait() by one of the running coroutines when a task 
succeded or a specific condition happens by just raising an specific exception.

At the moment this can be done but it will cancel all the coroutines with any 
exception that is raised and at some occasions this may not be desired.

A simple example:

async def example(num):
    if x == 5:
        raise Exception('Exception that does not cancel')
    elif x == 15:
        raise CancelException()

tasks = [asyncio.ensure_future(example(x)) for x in range(20)]
done, pending = await asyncio.wait(tasks, return_when=FIRST_EXCEPTION, 
return_on=CancelException)

This wouldn't cancel everything when a normal exception is raised, instead it 
will when the exception raised is the one that the user expects to be raised in 
order to cancel everything that is pending. 

In addition, if the user does not specify the Exception type, it uses default 
Exception so it would keep working exactly as now.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33403>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to