MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __dir__

Method __dir__

lib/sqlalchemy/util/_collections.py:171–172  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

169 return iter(list(self._data.values()))
170
171 def __dir__(self) -> List[str]:
172 return dir(super()) + [str(k) for k in self._data.keys()]
173
174 def __add__(self, other: Properties[_F]) -> List[Union[_T, _F]]:
175 return list(self) + list(other)

Callers

nothing calls this directly

Calls 1

keysMethod · 0.45

Tested by

no test coverage detected