set an attribute value on the given instance and 'commit' it.
(self, state, dict_, value)
| 1200 | return self.get(state, dict_, passive=passive) |
| 1201 | |
| 1202 | def set_committed_value(self, state, dict_, value): |
| 1203 | """set an attribute value on the given instance and 'commit' it.""" |
| 1204 | |
| 1205 | dict_[self.key] = value |
| 1206 | state._commit(dict_, [self.key]) |
| 1207 | return value |
| 1208 | |
| 1209 | |
| 1210 | class _ScalarAttributeImpl(_AttributeImpl): |