[issue25610] Add typing.Awaitable

2015-12-15 Thread Guido van Rossum
Guido van Rossum added the comment: Yes. (There's a corresponding issue for the typehinting repo that's still open because the tests need to be segregated into Python-3.5-only tests and tests for Python 3.3-3.4). -- assignee: -> gvanrossum resolution: -> fixed status: open -> closed

[issue25610] Add typing.Awaitable

2015-12-15 Thread Berker Peksag
Berker Peksag added the comment: Can we close this now? -- nosy: +berker.peksag ___ Python tracker ___ ___

[issue25610] Add typing.Awaitable

2015-12-06 Thread Guido van Rossum
Guido van Rossum added the comment: Fixed by e9aeae1b2ea9 in 3.5, ad855c779bf3 in 3.6.] -- versions: +Python 3.5 ___ Python tracker ___

[issue25610] Add typing.Awaitable

2015-11-13 Thread Ivan Levkivskyi
Changes by Ivan Levkivskyi : -- nosy: +levkivskyi ___ Python tracker ___ ___

[issue25610] Add typing.Awaitable

2015-11-12 Thread Brett Cannon
New submission from Brett Cannon: Probably should have a subclass of Callable in `typing` for Awaitable functions (there is already a corollary object in collections.abc). -- components: asyncio messages: 254547 nosy: brett.cannon, giampaolo.rodola, gvanrossum, haypo, pitrou,