Pattern: Use of StopIteration
in generator
Issue: -
According to PEP 479, the raise of StopIteration
to end the loop of a generator may lead to hard to find bugs. This PEP specify that raise StopIteration
could be replaced by a simple return statement.