Run the tests:
make test
- A First Glimpse at Generators:
generators_1.py - The States of a Generator:
generators_2.py
Idioms for Iteration in Python:
generators_pythonic_1.pyThe Iterator Design Pattern, the Python way
2.1. A first approach of iteration with the iteration pattern:
generators_pythonic_2.py2.2. The idiomatic way: using an Iterator:
generators_pythonic_3.py
- The Methods of the Generator Interface:
generators_coroutines_1.py - Working with Coroutines:
generators_coroutines_2.py - Delegating Coroutines:
generators_yieldfrom_{2..3}.py
