changeset: 96769:34460219c0e0 branch: 3.4 parent: 96762:978bc1ff43a7 user: Yury Selivanov date: Fri Jul 03 00:41:16 2015 -0400 files: Lib/asyncio/coroutines.py description: Issue #24450: Proxy gi_yieldfrom & cr_await in asyncio.CoroWrapper diff -r 978bc1ff43a7 -r 34460219c0e0 Lib/asyncio/coroutines.py --- a/Lib/asyncio/coroutines.py Thu Jul 02 16:58:22 2015 -0500 +++ b/Lib/asyncio/coroutines.py Fri Jul 03 00:41:16 2015 -0400 @@ -145,6 +145,14 @@ __await__ = __iter__ # make compatible with 'await' expression @property + def gi_yieldfrom(self): + return self.gen.gi_yieldfrom + + @property + def cr_await(self): + return self.gen.cr_await + + @property def cr_running(self): return self.gen.cr_running