[issue23456] asyncio: add missing @coroutine decorators

2015-03-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6f7ed6e95ea8 by Victor Stinner in branch '3.4': Issue #23456: Add missing @coroutine decorators in asyncio https://hg.python.org/cpython/rev/6f7ed6e95ea8 -- nosy: +python-dev ___ Python tracker

[issue23456] asyncio: add missing @coroutine decorators

2015-03-18 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23456 ___

[issue23456] asyncio: add missing @coroutine decorators

2015-02-12 Thread STINNER Victor
New submission from STINNER Victor: coroutine_decorator.patch adds missing @coroutine decorator to coroutine functions and methods in the asyncio module. I'm not sure that it's ok to add @coroutine to __iter__() methods. At least, test_asyncio pass. -- components: asyncio files: