(apply_async, num_workers, *args, **kwargs)
| 626 | |
| 627 | |
| 628 | def get_apply_async(apply_async, num_workers, *args, **kwargs): |
| 629 | return get_async( |
| 630 | partial(submit_apply_async, apply_async), num_workers, *args, **kwargs |
| 631 | ) |
| 632 | |
| 633 | |
| 634 | def sortkey(item): |
nothing calls this directly
no test coverage detected
searching dependent graphs…