(self, state: InstanceState[Any])
| 4197 | self.dispatch.deleted_to_persistent(self, state) |
| 4198 | |
| 4199 | def _save_or_update_impl(self, state: InstanceState[Any]) -> None: |
| 4200 | if state.key is None: |
| 4201 | self._save_impl(state) |
| 4202 | else: |
| 4203 | self._update_impl(state) |
| 4204 | |
| 4205 | def enable_relationship_loading(self, obj: object) -> None: |
| 4206 | """Associate an object with this :class:`.Session` for related |
no test coverage detected