Iterator missing __next__()
| 2160 | return v |
| 2161 | |
| 2162 | class N: |
| 2163 | 'Iterator missing __next__()' |
| 2164 | def __init__(self, seqn): |
| 2165 | self.seqn = seqn |
| 2166 | self.i = 0 |
| 2167 | def __iter__(self): |
| 2168 | return self |
| 2169 | |
| 2170 | class E: |
| 2171 | 'Test propagation of exceptions' |
no outgoing calls