Test propagation of exceptions
| 2120 | return self |
| 2121 | |
| 2122 | class E: |
| 2123 | 'Test propagation of exceptions' |
| 2124 | def __init__(self, seqn): |
| 2125 | self.seqn = seqn |
| 2126 | self.i = 0 |
| 2127 | def __iter__(self): |
| 2128 | return self |
| 2129 | def __next__(self): |
| 2130 | 3 // 0 |
| 2131 | |
| 2132 | class E2: |
| 2133 | 'Test propagation of exceptions after two iterations' |
no outgoing calls