(conn)
| 625 | checked = False |
| 626 | |
| 627 | async def check(conn): |
| 628 | nonlocal checked |
| 629 | checked = True |
| 630 | |
| 631 | async with pool_cls(dsn, check=check) as p: |
| 632 | async with p.connection(timeout=1.0) as conn: |
nothing calls this directly
no test coverage detected