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

Method values

lib/sqlalchemy/sql/base.py:1662–1666  ·  view source on GitHub ↗

Return a sequence of :class:`_sql.ColumnClause` or :class:`_schema.Column` objects for all columns in this collection.

(self)

Source from the content-addressed store, hash-verified

1660 return [k for (k, _, _) in self._collection]
1661
1662 def values(self) -> List[_COL_co]:
1663 """Return a sequence of :class:`_sql.ColumnClause` or
1664 :class:`_schema.Column` objects for all columns in this
1665 collection."""
1666 return [col for (_, col, _) in self._collection]
1667
1668 def items(self) -> List[Tuple[_COLKEY, _COL_co]]:
1669 """Return a sequence of (key, column) tuples for all columns in this

Callers 1

__len__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected