Is your feature request related to a problem? Please describe.
Being able to call other generators from within a generator can significantly improve the python code clarity.
Describe the solution you'd like
Add support for the yield from syntax, to support calling other generator functions that output the same type(s) as its parent.
Describe alternatives you've considered
None.
Additional context
Function call syntax would have to be supported.
Since generators can be waited on, wait syntax needs to be improved.
Is your feature request related to a problem? Please describe. Being able to call other generators from within a generator can significantly improve the python code clarity.
Describe the solution you'd like Add support for the
yield from
syntax, to support calling other generator functions that output the same type(s) as its parent.Describe alternatives you've considered None.
Additional context Function call syntax would have to be supported. Since generators can be waited on, wait syntax needs to be improved.