Iterator missing __next__()
| 1777 | return v |
| 1778 | |
| 1779 | class N: |
| 1780 | 'Iterator missing __next__()' |
| 1781 | def __init__(self, seqn): |
| 1782 | self.seqn = seqn |
| 1783 | self.i = 0 |
| 1784 | def __iter__(self): |
| 1785 | return self |
| 1786 | |
| 1787 | class E: |
| 1788 | 'Test propagation of exceptions' |
no outgoing calls