Remove pending actions for a state from the uowtransaction.
(self, state)
| 237 | return ret |
| 238 | |
| 239 | def remove_state_actions(self, state): |
| 240 | """Remove pending actions for a state from the uowtransaction.""" |
| 241 | |
| 242 | isdelete = self.states[state][0] |
| 243 | |
| 244 | self.states[state] = (isdelete, True) |
| 245 | |
| 246 | def get_attribute_history( |
| 247 | self, state, key, passive=attributes.PASSIVE_NO_INITIALIZE |
no outgoing calls
no test coverage detected