(self)
| 1650 | |
| 1651 | @util.memoized_property |
| 1652 | def _expanded_proxy_set(self) -> FrozenSet[ColumnElement[Any]]: |
| 1653 | return frozenset(_expand_cloned(self.proxy_set)) |
| 1654 | |
| 1655 | def _uncached_proxy_list(self) -> List[ColumnElement[Any]]: |
| 1656 | """An 'uncached' version of proxy set. |
nothing calls this directly
no test coverage detected