(
self, holder: PoolConnectionHolder, con: connection.Connection
)
| 82 | __slots__ = ('_con', '_holder') |
| 83 | |
| 84 | def __init__( |
| 85 | self, holder: PoolConnectionHolder, con: connection.Connection |
| 86 | ) -> None: |
| 87 | self._con = con |
| 88 | self._holder = holder |
| 89 | con._set_proxy(self) |
| 90 | |
| 91 | def __getattr__(self, attr: str) -> Any: |
| 92 | # Proxy all unresolved attributes to the wrapped Connection object. |
nothing calls this directly
no test coverage detected