(results)
| 525 | repack_dsk[out] = Task(out, tuple, List(*[_unpack(i) for i in args])) |
| 526 | |
| 527 | def repack(results): |
| 528 | dsk = repack_dsk.copy() |
| 529 | dsk[collections_token] = DataNode(collections_token, results) |
| 530 | return simple_get(dsk, out) |
| 531 | |
| 532 | # The original `collections` is kept alive by the closure |
| 533 | # This causes the collection to be only freed by the garbage collector |
searching dependent graphs…