(self, state: InstanceState[Any])
| 96 | self.add(state) |
| 97 | |
| 98 | def _manage_incoming_state(self, state: InstanceState[Any]) -> None: |
| 99 | state._instance_dict = self._wr |
| 100 | |
| 101 | if state.modified: |
| 102 | self._modified.add(state) |
| 103 | |
| 104 | def _manage_removed_state(self, state: InstanceState[Any]) -> None: |
| 105 | del state._instance_dict |