You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- New loop.get_exception_handler method
(will be in asyncio in Python 3.5.2)
- New loop.create_future() method
(will be in asyncio in Python 3.5.2)
- Bump libuv version: v1.9.0 -> v1.9.1
- Transport.write is faster now, sequential write
calls can be up to 3x faster.
- Transport.writelines uses zero-copy now.
- Fix exceptions to be raised instead of being logged in
some cases (to be consistent with asyncio);
- loop.create_server now fails if it can't bind to the
address.