(num: int)
| 407 | out = [] |
| 408 | |
| 409 | def f(num: int) -> Callable[[web.Application], AsyncIterator[None]]: |
| 410 | async def inner(app: web.Application) -> AsyncIterator[None]: |
| 411 | out.append("pre_" + str(num)) |
| 412 | yield None |
| 413 | out.append("post_" + str(num)) |
| 414 | |
| 415 | return inner |
| 416 | |
| 417 | app.cleanup_ctx.append(f(1)) |
| 418 | app.cleanup_ctx.append(f(2)) |
no outgoing calls
no test coverage detected