(val)
| 188 | return retval |
| 189 | |
| 190 | async def task(val): |
| 191 | await asyncio.sleep(random.uniform(0.005, 0.015)) |
| 192 | var.set(val) |
| 193 | await asyncio.sleep(random.uniform(0.005, 0.015)) |
| 194 | return await greenlet_spawn(inner, val) |
| 195 | |
| 196 | values = { |
| 197 | await coro |
nothing calls this directly
no test coverage detected