MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/sql/selectable.py:3504–3513  ·  view source on GitHub ↗
(
        self,
        columns: Sequence[NamedColumn[Any]],
        data: Tuple[Sequence[Tuple[Any, ...]], ...],
        literal_binds: bool,
    )

Source from the content-addressed store, hash-verified

3502 ]
3503
3504 def __init__(
3505 self,
3506 columns: Sequence[NamedColumn[Any]],
3507 data: Tuple[Sequence[Tuple[Any, ...]], ...],
3508 literal_binds: bool,
3509 ):
3510 super().__init__()
3511 self._column_args = columns
3512 self._data = data
3513 self.literal_binds = literal_binds
3514
3515 @property
3516 def _column_types(self) -> List[TypeEngine[Any]]:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected