return True if any InstanceStates present have been marked as 'modified'.
(self)
| 110 | return self._modified |
| 111 | |
| 112 | def check_modified(self) -> bool: |
| 113 | """return True if any InstanceStates present have been marked |
| 114 | as 'modified'. |
| 115 | |
| 116 | """ |
| 117 | return bool(self._modified) |
| 118 | |
| 119 | def has_key(self, key: _IdentityKeyType[Any]) -> bool: |
| 120 | return key in self |