Test immediate stop
| 2192 | return v |
| 2193 | |
| 2194 | class S: |
| 2195 | 'Test immediate stop' |
| 2196 | def __init__(self, seqn): |
| 2197 | pass |
| 2198 | def __iter__(self): |
| 2199 | return self |
| 2200 | def __next__(self): |
| 2201 | raise StopIteration |
| 2202 | |
| 2203 | def L(seqn): |
| 2204 | 'Test multiple tiers of iterators' |
no outgoing calls