(self)
| 1588 | |
| 1589 | @util.memoized_property |
| 1590 | def _expanded_proxy_set(self) -> FrozenSet[ColumnElement[Any]]: |
| 1591 | return frozenset(_expand_cloned(self.proxy_set)) |
| 1592 | |
| 1593 | def _uncached_proxy_list(self) -> List[ColumnElement[Any]]: |
| 1594 | """An 'uncached' version of proxy set. |
nothing calls this directly
no test coverage detected