python/asyncio

asyncio.timeout() is missing documentation in Python 3.6

rutsky opened this issue · 3 comments

I see in What’s New In Python 3.6 that asyncio.timeout will be reintroduced in Python 3.6, but I don't see docs for it in 3.6.0b1 version in official docs.

/cc: @asvetlov

It was ripped out after inclusion.
But you can use async_timeout which is a clone of ripped version.

Oh, I see... Then this issue is resolved, thanks for pointing on async_timeout!