Defines the given attribute/value pairs in this task's data.
(self, **kwargs)
| 145 | return (self._state & state) != 0 |
| 146 | |
| 147 | def set_data(self, **kwargs): |
| 148 | """Defines the given attribute/value pairs in this task's data.""" |
| 149 | self.data.update(kwargs) |
| 150 | |
| 151 | def get_data(self, name, default=None): |
| 152 | """Returns the value of the data field with the given name, or the given |
no outgoing calls
no test coverage detected