MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / values

Method values

lib/sqlalchemy/sql/base.py:1905–1909  ·  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

1903 return [k for (k, _, _) in self._collection]
1904
1905 def values(self) -> List[_COL_co]:
1906 """Return a sequence of :class:`_sql.ColumnClause` or
1907 :class:`_schema.Column` objects for all columns in this
1908 collection."""
1909 return [col for (_, col, _) in self._collection]
1910
1911 def items(self) -> List[Tuple[_COLKEY, _COL_co]]:
1912 """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