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

Method __init__

lib/sqlalchemy/orm/util.py:1802–1809  ·  view source on GitHub ↗
(
        self, name: str, *exprs: _ColumnExpressionArgument[Any], **kw: Any
    )

Source from the content-addressed store, hash-verified

1800 """
1801
1802 def __init__(
1803 self, name: str, *exprs: _ColumnExpressionArgument[Any], **kw: Any
1804 ) -> None:
1805 super().__init__(name, *exprs, **kw)
1806 if len(set(self.c.keys())) != len(self.c):
1807 raise sa_exc.ArgumentError(
1808 "DictBundle does not support duplicate column names"
1809 )
1810
1811 def create_row_processor(
1812 self,

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
keysMethod · 0.45

Tested by

no test coverage detected