We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Connection.connection
_ConnectionFairy
1 parent d04a1ef commit 1fffd91Copy full SHA for 1fffd91
sqlalchemy-stubs/engine/base.pyi
@@ -22,6 +22,7 @@ from .._typing import _ExecuteOptions
22
from .._typing import _ExecuteParams
23
from ..exc import StatementError
24
from ..pool import Pool
25
+from ..pool.base import _ConnectionFairy
26
27
_T = TypeVar("_T")
28
_T_co = TypeVar("_T_co", covariant=True)
@@ -64,7 +65,7 @@ class Connection(_ConnectionTypingCommon, Connectable):
64
65
def execution_options(self: _TConnection, **opt: Any) -> _TConnection: ...
66
def get_execution_options(self) -> _ExecuteOptions: ...
67
@property
- def connection(self) -> _DBAPIConnection: ...
68
+ def connection(self) -> _ConnectionFairy: ...
69
def get_isolation_level(self) -> Any: ...
70
71
def info(self) -> MutableMapping[Any, Any]: ...
0 commit comments