which async framework?

Gregory Ewing greg.ewing at canterbury.ac.nz
Tue Mar 11 17:56:43 EDT 2014


Sturla Molden wrote:
> Another thing is that co-routines and "yield from" statements just makes it
> hard to follow the logic of the program. I still have to convince myself
> that a library for transforming epoll function calls into co-routines is
> actually useful.

It's not "epoll function calls" that the coroutine style is
intended to replace, it's complex systems of chained callbacks.
They're supposed to make that kind of logic *easier* to follow.
If you haven't had that experience, it may be because you've
only dealt with simple cases.

-- 
Greg



More information about the Python-list mailing list