(
self, columns: Optional[Iterable[Tuple[_COLKEY, _COL_co]]] = None
)
| 1624 | _colset: Set[_COL_co] |
| 1625 | |
| 1626 | def __init__( |
| 1627 | self, columns: Optional[Iterable[Tuple[_COLKEY, _COL_co]]] = None |
| 1628 | ): |
| 1629 | object.__setattr__(self, "_colset", set()) |
| 1630 | object.__setattr__(self, "_index", {}) |
| 1631 | object.__setattr__( |
| 1632 | self, "_proxy_index", collections.defaultdict(util.OrderedSet) |
| 1633 | ) |
| 1634 | object.__setattr__(self, "_collection", []) |
| 1635 | if columns: |
| 1636 | self._initial_populate(columns) |
| 1637 | |
| 1638 | @util.preload_module("sqlalchemy.sql.elements") |
| 1639 | def __clause_element__(self) -> ClauseList: |
nothing calls this directly
no test coverage detected