(self, job=None)
| 344 | error('Job #%s not found' % num) |
| 345 | |
| 346 | def traceback(self, job=None): |
| 347 | if job is None: |
| 348 | self._update_status() |
| 349 | for deadjob in self.dead: |
| 350 | print("Traceback for: %r" % deadjob) |
| 351 | self._traceback(deadjob) |
| 352 | print() |
| 353 | else: |
| 354 | self._traceback(job) |
| 355 | |
| 356 | |
| 357 | class BackgroundJobBase(threading.Thread): |
nothing calls this directly
no test coverage detected