Comment on Async I/O for Python 3 parentComments−masklinn13yPython does not do AST-rewriting at compilation, `yield` and `yield from` will handle stack reification for freezing and thawing of coroutines.So chains of `yield`s and `yield from`s will bubble to the event loop.
Comments
Python does not do AST-rewriting at compilation, `yield` and `yield from` will handle stack reification for freezing and thawing of coroutines.
So chains of `yield`s and `yield from`s will bubble to the event loop.