show/hide this revision's text 5 Changed tag to be consistent with the other questions relating to yield.
show/hide this revision's text 4 edited tags
show/hide this revision's text 3 Code formatting

In plain english, please...

I'm trying to understand this code:

def node._get_child_candidates(self, distance, min_dist, max_dist):
    if self._leftchild and distance - max_dist < self._median:
        yield self._leftchild
    if self._rightchild and distance + max_dist >= self._median:
        yield self._rightchild

And this is the code of the caller:

result, candidates = list(), [self]
while candidates:
    node = candidates.pop()
    distance = node._get_dist(obj)
    if distance <= max_dist and distance >= min_dist:
        result.extend(node._values)
        candidates.extend(node._get_child_candidates(distance, min_dist, max_dist))
        return result

Can you explain me what is happening when the method _get_child_candidates_ is being called? It returns a list?, a single element? is called again? what is the effect of the yield keyword in this case?

show/hide this revision's text 2 edited tags
show/hide this revision's text 1