Close this :class:`_asyncio.AsyncConnection`. This has the effect of also rolling back the transaction if one is in place.
(self)
| 481 | await greenlet_spawn(self._proxied.rollback) |
| 482 | |
| 483 | async def close(self) -> None: |
| 484 | """Close this :class:`_asyncio.AsyncConnection`. |
| 485 | |
| 486 | This has the effect of also rolling back the transaction if one |
| 487 | is in place. |
| 488 | |
| 489 | """ |
| 490 | await greenlet_spawn(self._proxied.close) |
| 491 | |
| 492 | async def aclose(self) -> None: |
| 493 | """A synonym for :meth:`_asyncio.AsyncConnection.close`. |
no test coverage detected