(loop, loader)
| 178 | |
| 179 | |
| 180 | def enqueue_post_future_job(loop, loader): |
| 181 | async def dispatch(): |
| 182 | dispatch_queue(loader) |
| 183 | |
| 184 | loop.call_soon(ensure_future, dispatch()) |
| 185 | |
| 186 | |
| 187 | def get_chunks(iterable_obj, chunk_size=1): |
no test coverage detected