mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Issue #24450: Proxy gi_yieldfrom & cr_await in asyncio.CoroWrapper
This commit is contained in:
parent
d3a2a95125
commit
09e6058838
1 changed files with 8 additions and 0 deletions
|
@ -144,6 +144,14 @@ class CoroWrapper:
|
||||||
|
|
||||||
__await__ = __iter__ # make compatible with 'await' expression
|
__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
|
@property
|
||||||
def cr_running(self):
|
def cr_running(self):
|
||||||
return self.gen.cr_running
|
return self.gen.cr_running
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue