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