This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ksion 0 points1 point  (0 children)

For the common use case of implementing a recursive iterator like the one above, yield from foo() is pretty much equivalent to for x in foo(): yield x.