(self, key, callable_)
| 230 | return state in self.states and self.states[state][0] |
| 231 | |
| 232 | def memo(self, key, callable_): |
| 233 | if key in self.attributes: |
| 234 | return self.attributes[key] |
| 235 | else: |
| 236 | self.attributes[key] = ret = callable_() |
| 237 | return ret |
| 238 | |
| 239 | def remove_state_actions(self, state): |
| 240 | """Remove pending actions for a state from the uowtransaction.""" |
no outgoing calls
no test coverage detected