(text, job)
| 389 | |
| 390 | @Printer.register(Job) |
| 391 | def print_job(text, job): |
| 392 | text(job.init_group, 'Job.current().init_group') |
| 393 | text(job.epoch_group, 'Job.current().epoch_group') |
| 394 | with text.context('Job.current().stop_conditions'): |
| 395 | for out in job.stop_conditions: |
| 396 | text.add(_print_task_output(out)) |
| 397 | text(job.download_group, 'Job.current().download_group') |
| 398 | text(job.exit_group, 'Job.current().exit_group') |
| 399 | |
| 400 | |
| 401 | def to_string(obj, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…