MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/ext/asyncio/engine.py:229–236  ·  view source on GitHub ↗
(
        self,
        async_engine: AsyncEngine,
        sync_connection: Optional[Connection] = None,
    )

Source from the content-addressed store, hash-verified

227 )
228
229 def __init__(
230 self,
231 async_engine: AsyncEngine,
232 sync_connection: Optional[Connection] = None,
233 ):
234 self.engine = async_engine
235 self.sync_engine = async_engine.sync_engine
236 self.sync_connection = self._assign_proxied(sync_connection)
237
238 sync_connection: Optional[Connection]
239 """Reference to the sync-style :class:`_engine.Connection` this

Callers

nothing calls this directly

Calls 1

_assign_proxiedMethod · 0.80

Tested by

no test coverage detected