summaryrefslogtreecommitdiffstats
path: root/Lib/types.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-07-03 04:35:02 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-07-03 04:35:02 (GMT)
commit53e623075dbcba2afaffc859c2fae9bff48e9abf (patch)
tree16826cf2473cbd2f1a943ae1c8ef9265b8833ecd /Lib/types.py
parente13f8f3cabda31742beba3dc9e5e170d7bbdbb88 (diff)
downloadcpython-53e623075dbcba2afaffc859c2fae9bff48e9abf.zip
cpython-53e623075dbcba2afaffc859c2fae9bff48e9abf.tar.gz
cpython-53e623075dbcba2afaffc859c2fae9bff48e9abf.tar.bz2
Issue #24450: Proxy cr_await and gi_yieldfrom in @types.coroutine
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 38b453a..8c5fc65 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -188,9 +188,13 @@ class _GeneratorWrapper:
@property
def gi_running(self):
return self.__wrapped.gi_running
+ @property
+ def gi_yieldfrom(self):
+ return self.__wrapped.gi_yieldfrom
cr_code = gi_code
cr_frame = gi_frame
cr_running = gi_running
+ cr_await = gi_yieldfrom
def __next__(self):
return next(self.__wrapped)
def __iter__(self):