(self, state: InstanceState[Any])
| 4353 | self.dispatch.deleted_to_persistent(self, state) |
| 4354 | |
| 4355 | def _save_or_update_impl(self, state: InstanceState[Any]) -> None: |
| 4356 | if state.key is None: |
| 4357 | self._save_impl(state) |
| 4358 | else: |
| 4359 | self._update_impl(state) |
| 4360 | |
| 4361 | def enable_relationship_loading(self, obj: object) -> None: |
| 4362 | """Associate an object with this :class:`.Session` for related |
no test coverage detected