Iterator missing __next__()
| 2112 | return v |
| 2113 | |
| 2114 | class N: |
| 2115 | 'Iterator missing __next__()' |
| 2116 | def __init__(self, seqn): |
| 2117 | self.seqn = seqn |
| 2118 | self.i = 0 |
| 2119 | def __iter__(self): |
| 2120 | return self |
| 2121 | |
| 2122 | class E: |
| 2123 | 'Test propagation of exceptions' |
no outgoing calls