(self, state, dict_, column, value)
| 3584 | state.manager[prop.key].impl.set_committed_value(state, dict_, value) |
| 3585 | |
| 3586 | def _set_state_attr_by_column(self, state, dict_, column, value): |
| 3587 | prop = self._columntoproperty[column] |
| 3588 | state.manager[prop.key].impl.set(state, dict_, value, None) |
| 3589 | |
| 3590 | def _get_committed_attr_by_column(self, obj, column): |
| 3591 | state = attributes.instance_state(obj) |