Test propagation of exceptions
| 2168 | return self |
| 2169 | |
| 2170 | class E: |
| 2171 | 'Test propagation of exceptions' |
| 2172 | def __init__(self, seqn): |
| 2173 | self.seqn = seqn |
| 2174 | self.i = 0 |
| 2175 | def __iter__(self): |
| 2176 | return self |
| 2177 | def __next__(self): |
| 2178 | 3 // 0 |
| 2179 | |
| 2180 | class E2: |
| 2181 | 'Test propagation of exceptions after two iterations' |
no outgoing calls