diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-01 01:37:09 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-01 01:37:09 (GMT) |
commit | 70adad2a0e7bfb2fbe70027acfb85230dc790b0b (patch) | |
tree | b105cfed2d21b4ec91b7b3511e928e47726e2e63 /Lib/asyncio | |
parent | a316085192382e56c8322da395231e24c6dbdc5b (diff) | |
download | cpython-70adad2a0e7bfb2fbe70027acfb85230dc790b0b.zip cpython-70adad2a0e7bfb2fbe70027acfb85230dc790b0b.tar.gz cpython-70adad2a0e7bfb2fbe70027acfb85230dc790b0b.tar.bz2 |
Issue 24017: Fix asyncio.CoroWrapper to support 'async def' coroutines
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/coroutines.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/coroutines.py b/Lib/asyncio/coroutines.py index 4933cf8..edb6806 100644 --- a/Lib/asyncio/coroutines.py +++ b/Lib/asyncio/coroutines.py @@ -120,7 +120,7 @@ class CoroWrapper: __await__ = __iter__ # make compatible with 'await' expression def __next__(self): - return next(self.gen) + return self.gen.send(None) if _YIELD_FROM_BUG: # For for CPython issue #21209: using "yield from" and a custom |