Return ``True`` if the given state is marked as deleted within this uowtransaction.
(self, state)
| 224 | return False |
| 225 | |
| 226 | def is_deleted(self, state): |
| 227 | """Return ``True`` if the given state is marked as deleted |
| 228 | within this uowtransaction.""" |
| 229 | |
| 230 | return state in self.states and self.states[state][0] |
| 231 | |
| 232 | def memo(self, key, callable_): |
| 233 | if key in self.attributes: |
no outgoing calls
no test coverage detected