()
| 2308 | buffer.append(exc_type.__name__) |
| 2309 | |
| 2310 | async def f(): |
| 2311 | async with CM(): |
| 2312 | await asyncio.sleep(0.01) |
| 2313 | raise MyException |
| 2314 | buffer.append('unreachable') |
| 2315 | |
| 2316 | loop = asyncio.new_event_loop() |
| 2317 | asyncio.set_event_loop(loop) |