mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
Merge 3.4 (Issue #24450)
This commit is contained in:
commit
27be130ec7
1 changed files with 8 additions and 0 deletions
|
|
@ -144,6 +144,14 @@ def gi_code(self):
|
|||
|
||||
__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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue