Test immediate stop
| 2144 | return v |
| 2145 | |
| 2146 | class S: |
| 2147 | 'Test immediate stop' |
| 2148 | def __init__(self, seqn): |
| 2149 | pass |
| 2150 | def __iter__(self): |
| 2151 | return self |
| 2152 | def __next__(self): |
| 2153 | raise StopIteration |
| 2154 | |
| 2155 | def L(seqn): |
| 2156 | 'Test multiple tiers of iterators' |
no outgoing calls