What are the situations where "yield from" is useful?
Every situation where you have a loop like that in your code:
for x in subgenerator:
yield x
As the PEP describes, this is a rather naive attempt at using the subgenerator, it's missing several aspects, especially the proper handling of the throw()/send()/close() mechanisms introduced by PEP 342. To do this properly, rather complicated code is necessary.
What is the classic use case?
For example, if you want to extract information from a recursive data structure. Let's say we want to get all leaf nodes in a tree:
def traverse_tree(node):
if not node.children:
yield node
for child in node.children:
yield from traverse_tree(child)
Even more important is the fact that today, there doesn't exist a simple method of refactoring generator code. Suppose you have a (senseless) generator like this:
def get_list_values(lst):
for item in lst:
yield int(item)
for item in lst:
yield str(item)
for item in lst:
yield float(item)
Now you decide to factor out these loops into separate generators. Without yield from, this is ugly, up to the point where you think twice whether you actually want to do it. With yield from, it's actually nice to look at:
def get_list_values(lst):
for sub in [get_list_values_as_int,
get_list_values_as_str,
get_list_values_as_float]:
yield from sub(lst)
Why is it compared to micro-threads?
I think what this section in the PEP is talking about is that every generator does have it's own, isolated execution context. Together with the fact that execution is switched between the generator-iterator and the caller using yield and __next__(), respectively, this is similar to threads, where the operating system switches the executing thread from time to time, along with the execution context (stack, registers, ...).
The effect of this is also comparable: Both the generator-iterator and the caller progress in their execution state at the same time. For example, if the generator does some kind of computation and the caller prints out the results, you'll see the results as soon as they're available. This is a form of parallelization.
That analogy isn't anything specific to yield from, though, it's rather a general property of generators in Python.