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
- loop.create_future() and loop.create_task() now return
optimized versions of Future and Task, which are much
faster. The performance improvements on some benchmarks
are up to 35% faster.
- create_unix_server() (similarly to asyncio) now doesn't
clenup the UNIX socket file after server is closed.
- loop.time() forces libuv loop to always update its
internal time, so uvloop now behaves exactly like
asyncio.
- In debug mode callback handles now store tracebacks
to where they were created.