Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 454 Bytes

stop-iteration-return.md

File metadata and controls

11 lines (6 loc) · 454 Bytes

Pattern: Use of StopIteration in generator

Issue: -

Description

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.

Further Reading