set an attribute value on the given instance and 'commit' it.
(self, state, dict_, value)
| 1205 | return self.get(state, dict_, passive=passive) |
| 1206 | |
| 1207 | def set_committed_value(self, state, dict_, value): |
| 1208 | """set an attribute value on the given instance and 'commit' it.""" |
| 1209 | |
| 1210 | dict_[self.key] = value |
| 1211 | state._commit(dict_, [self.key]) |
| 1212 | return value |
| 1213 | |
| 1214 | |
| 1215 | class ScalarAttributeImpl(AttributeImpl): |