python / asyncio

asyncio historical repository
https://docs.python.org/3/library/asyncio.html
1.04k stars 177 forks source link

asyncio.timeout() is missing documentation in Python 3.6 #427

Closed rutsky closed 7 years ago

rutsky commented 7 years ago

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

asvetlov commented 7 years ago

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

rutsky commented 7 years ago

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

gvanrossum commented 7 years ago

FWIW I removed it from the what's new. (If we end up adding something like this back we'll update it again.)