(self)
| 100 | |
| 101 | @property |
| 102 | def completed(self): |
| 103 | self._update_status() |
| 104 | return self._completed |
| 105 | |
| 106 | def new(self, func_or_exp, *args, **kwargs): |
| 107 | """Add a new background job and start it in a separate thread. |
nothing calls this directly
no test coverage detected