Why can’t I ‘yield from’ inside an async function?
According to PEP 525, which introduces asyncronous generators in Python 3.6: Asynchronous yield from While it is theoretically possible to implement yield from support for asynchronous generators, it would require a serious redesign of the generators implementation. yield from is also less critical for asynchronous generators, since there is no need provide a mechanism of … Read more