(task)
| 27 | |
| 28 | @reprlib.recursive_repr() |
| 29 | def _task_repr(task): |
| 30 | info = ' '.join(_task_repr_info(task)) |
| 31 | return f'<{task.__class__.__name__} {info}>' |
| 32 | |
| 33 | |
| 34 | def _task_get_stack(task, limit): |
nothing calls this directly
no test coverage detected
searching dependent graphs…