MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _hide_froms

Method _hide_froms

lib/sqlalchemy/sql/selectable.py:1700–1703  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1698
1699 @util.ro_non_memoized_property
1700 def _hide_froms(self) -> Iterable[FromClause]:
1701 return itertools.chain(
1702 *[_from_objects(x.left, x.right) for x in self._cloned_set]
1703 )
1704
1705 @util.ro_non_memoized_property
1706 def _from_objects(self) -> List[FromClause]:

Callers

nothing calls this directly

Calls 2

_from_objectsFunction · 0.85
chainMethod · 0.45

Tested by

no test coverage detected