mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Merge 3.5 (Issue #24450)
This commit is contained in:
commit
1c5e5a89b4
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