diff options
author | 2015-07-03 00:35:02 -0400 | |
---|---|---|
committer | 2015-07-03 00:35:02 -0400 | |
commit | 53e623075dbcba2afaffc859c2fae9bff48e9abf (patch) | |
tree | 16826cf2473cbd2f1a943ae1c8ef9265b8833ecd /Lib/types.py | |
parent | Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines. (diff) | |
download | cpython-53e623075dbcba2afaffc859c2fae9bff48e9abf.tar.gz cpython-53e623075dbcba2afaffc859c2fae9bff48e9abf.tar.bz2 cpython-53e623075dbcba2afaffc859c2fae9bff48e9abf.zip |
Issue #24450: Proxy cr_await and gi_yieldfrom in @types.coroutine
Diffstat (limited to 'Lib/types.py')
-rw-r--r-- | Lib/types.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py index 38b453ad197..8c5fc65d273 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): |