Method
__init__
(
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
Tested by
no test coverage detected