MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / non_added

Method non_added

lib/sqlalchemy/orm/attributes.py:2399–2402  ·  view source on GitHub ↗

Return a collection of unchanged + deleted.

(self)

Source from the content-addressed store, hash-verified

2397 return (self.added or []) + (self.unchanged or [])
2398
2399 def non_added(self) -> Sequence[Any]:
2400 """Return a collection of unchanged + deleted."""
2401
2402 return (self.unchanged or []) + (self.deleted or [])
2403
2404 def has_changes(self) -> bool:
2405 """Return True if this :class:`.History` has changes."""

Callers 1

process_deletesMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected