(self)
| 179 | await self.close() |
| 180 | |
| 181 | def acquire_connection(self) -> ConnectionWrapper | PoolConnectionWrapper: |
| 182 | return PoolConnectionWrapper(self, self._pool_init_lock) |
| 183 | |
| 184 | def _in_transaction(self) -> TransactionContext: |
| 185 | return TransactionContextPooled(TransactionWrapper(self), self._pool_init_lock) |
no test coverage detected