(cls: _T, *arg: Any, **kw: Any)
| 227 | _singleton: SingletonConstant |
| 228 | |
| 229 | def __new__(cls: _T, *arg: Any, **kw: Any) -> _T: |
| 230 | return cast(_T, cls._singleton) |
| 231 | |
| 232 | @util.non_memoized_property |
| 233 | def proxy_set(self) -> FrozenSet[ColumnElement[Any]]: |
no test coverage detected