Commit 27be130e authored by Yury Selivanov's avatar Yury Selivanov

Merge 3.4 (Issue #24450)

parents 53e62307 09e60588
......@@ -144,6 +144,14 @@ class CoroWrapper:
__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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment