MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __iter__

Method __iter__

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

Source from the content-addressed store, hash-verified

453 return len(set(self._non_defaults).union(self._defaults))
454
455 def __iter__(self) -> Iterator[str]:
456 return iter(set(self._non_defaults).union(self._defaults))
457
458 def __getitem__(self, key: str) -> Any:
459 if key in self._non_defaults:

Callers

nothing calls this directly

Calls 1

unionMethod · 0.45

Tested by

no test coverage detected