MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __await__

Method __await__

lib/sqlalchemy/ext/asyncio/base.py:117–118  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

115 raise NotImplementedError()
116
117 def __await__(self) -> Generator[Any, Any, _T_co]:
118 return self.start().__await__()
119
120 async def __aenter__(self) -> _T_co:
121 return await self.start(is_ctxmanager=True)

Callers

nothing calls this directly

Calls 1

startMethod · 0.95

Tested by

no test coverage detected