Tim Peters wrote: > The primary use case is "search loops". > > for item in sequence: > if desirable(item): > break > else: > no desirable item exists Except that almost all of my search loops are in functions of their own, and I just use return. So I don't get to use this use case. Greg