(self)
| 685 | ) |
| 686 | |
| 687 | def _revalidate_connection(self) -> PoolProxiedConnection: |
| 688 | if self.__can_reconnect and self.invalidated: |
| 689 | if self._transaction is not None: |
| 690 | self._invalid_transaction() |
| 691 | self._dbapi_connection = self.engine.raw_connection() |
| 692 | return self._dbapi_connection |
| 693 | raise exc.ResourceClosedError("This Connection is closed") |
| 694 | |
| 695 | @property |
| 696 | def info(self) -> _InfoType: |
no test coverage detected