Any non-default pool options that were set on this Connection Pool.
(self)
| 838 | |
| 839 | @property |
| 840 | def options(self) -> dict[str, Any]: |
| 841 | """Any non-default pool options that were set on this Connection Pool.""" |
| 842 | return self.__options |
| 843 | |
| 844 | def __repr__(self) -> str: |
| 845 | return f"{self.__class__.__name__}({self.address!r}, {self.__options!r})" |
no outgoing calls