(self, uow, states)
| 904 | pass |
| 905 | |
| 906 | def presort_saves(self, uow, states): |
| 907 | if not self.passive_updates: |
| 908 | # for non-passive updates, register in the preprocess stage |
| 909 | # so that mapper save_obj() gets a hold of changes |
| 910 | self._process_key_switches(states, uow) |
| 911 | |
| 912 | def prop_has_changes(self, uow, states, isdelete): |
| 913 | if not isdelete and self.passive_updates: |
nothing calls this directly
no test coverage detected