Le vendredi 12 décembre 2014, Yury Selivanov <[email protected]> a écrit : > > It's such a great idea! Congrats.
Thanks. > Maybe we should include aiotest to the asyncio package/python stdlib? It doesn't make sense to add aiotest to the stdlib. It moves too slowly and it's not easy to contribute to Python. Alone the aiotest is not useful in the stdlib. I would prefer to keep it outside Tulip, at least right now. I prefer to see Tulip as yet another implementation of asyncio, even if it is the reference implementation for Python 3.3. aiotest works on Python 2 using yield for coroutines, so it is not strictly restricted to the asyncio API. aiogevent and aioeventlet are based on Trollius. Eventlet and gevent were only ported recently to Python 3. The latest release of gevent doesn't work on Python 3, the development version does (partially). The latest release of eventlet works on Python 3, but only without monkey patching, it becomes better in the development branch. Victor
