(self)
| 54 | raise ex.with_traceback(None) |
| 55 | |
| 56 | async def __aenter__(self) -> Self: |
| 57 | async with self._lock: |
| 58 | await self._conn.wait(self._enter_gen()) |
| 59 | return self |
| 60 | |
| 61 | async def __aexit__( |
| 62 | self, |
nothing calls this directly
no test coverage detected