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