(source, source_mapper, dict_, synchronize_pairs)
| 112 | |
| 113 | |
| 114 | def _populate_dict(source, source_mapper, dict_, synchronize_pairs): |
| 115 | for l, r in synchronize_pairs: |
| 116 | try: |
| 117 | value = source_mapper._get_state_attr_by_column( |
| 118 | source, source.dict, l, passive=PassiveFlag.PASSIVE_OFF |
| 119 | ) |
| 120 | except exc.UnmappedColumnError as err: |
| 121 | _raise_col_to_prop(False, source_mapper, l, None, r, err) |
| 122 | |
| 123 | dict_[r.key] = value |
| 124 | |
| 125 | |
| 126 | def _source_modified(uowcommit, source, source_mapper, synchronize_pairs): |
nothing calls this directly
no test coverage detected