(self, attr: str)
| 89 | con._set_proxy(self) |
| 90 | |
| 91 | def __getattr__(self, attr: str) -> Any: |
| 92 | # Proxy all unresolved attributes to the wrapped Connection object. |
| 93 | return getattr(self._con, attr) |
| 94 | |
| 95 | def _detach(self) -> Optional[connection.Connection]: |
| 96 | if self._con is None: |
nothing calls this directly
no outgoing calls
no test coverage detected