Alias for aclose(), for backwards compatibility
(self, close_connection_pool: Optional[bool] = None)
| 768 | |
| 769 | @deprecated_function(version="5.0.1", reason="Use aclose() instead", name="close") |
| 770 | async def close(self, close_connection_pool: Optional[bool] = None) -> None: |
| 771 | """ |
| 772 | Alias for aclose(), for backwards compatibility |
| 773 | """ |
| 774 | await self.aclose(close_connection_pool) |
| 775 | |
| 776 | async def _send_command_parse_response(self, conn, command_name, *args, **options): |
| 777 | """ |
no test coverage detected