Hi,
I renamed the project "aiogreen" to"aioeventlet" to make it make
explicit than the goal is to be plugged on top of eventlet. Since
eventlet and gevent look to be exclusive, I chose to create new
project (aiogevent) for gevent.
I also renamed "wrap_future()" to "yield_future() in aioeventlet 0.4.
"Yield" comes from the eventlet.sleep documentation ("Yield control to
another eligible coroutine until at least seconds have elapsed.") and
from yield/yield-from used by trollius/asyncio. The yield_future()
name is also closer to the yield_from() function of the greenio
module.
I hope that aioeventlet 0.4 API will now be more stable, the module
only adds 2 functions:
http://aioeventlet.readthedocs.org/using.html#api
The module provides EventLoop and EventLoopPolicy classes.
Victor