MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __iter__

Method __iter__

lib/sqlalchemy/sql/base.py:443–444  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

441 return len(set(self._non_defaults).union(self._defaults))
442
443 def __iter__(self) -> Iterator[str]:
444 return iter(set(self._non_defaults).union(self._defaults))
445
446 def __getitem__(self, key: str) -> Any:
447 if key in self._non_defaults:

Callers

nothing calls this directly

Calls 1

unionMethod · 0.45

Tested by

no test coverage detected