MCPcopy Create free account
hub / github.com/dask/dask / _merge_chunk_wrapper

Function _merge_chunk_wrapper

dask/dataframe/multi.py:362–368  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

360
361
362def _merge_chunk_wrapper(*args, **kwargs):
363 return merge_chunk(
364 *args,
365 **{
366 k: pickle.loads(v) if isinstance(v, bytes) else v for k, v in kwargs.items()
367 },
368 )

Callers

nothing calls this directly

Calls 2

merge_chunkFunction · 0.85
itemsMethod · 0.45

Tested by

no test coverage detected