Test propagation of exceptions
| 1785 | return self |
| 1786 | |
| 1787 | class E: |
| 1788 | 'Test propagation of exceptions' |
| 1789 | def __init__(self, seqn): |
| 1790 | self.seqn = seqn |
| 1791 | self.i = 0 |
| 1792 | def __iter__(self): |
| 1793 | return self |
| 1794 | def __next__(self): |
| 1795 | 3 // 0 |
| 1796 | |
| 1797 | class S: |
| 1798 | 'Test immediate stop' |
no outgoing calls