()
| 1315 | a = self.new_task(loop, asyncio.sleep(0.1)) |
| 1316 | |
| 1317 | async def sleeper(): |
| 1318 | await asyncio.sleep(0.15) |
| 1319 | raise ZeroDivisionError('really') |
| 1320 | |
| 1321 | b = self.new_task(loop, sleeper()) |
| 1322 |
nothing calls this directly
no test coverage detected