(val)
| 164 | return retval |
| 165 | |
| 166 | async def task(val): |
| 167 | await asyncio.sleep(random.uniform(0.005, 0.015)) |
| 168 | var.set(val) |
| 169 | await asyncio.sleep(random.uniform(0.005, 0.015)) |
| 170 | return await greenlet_spawn(inner, val) |
| 171 | |
| 172 | values = { |
| 173 | await coro |
nothing calls this directly
no test coverage detected