cc_net/regroup.py [27:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    inputs: List[Path],
    output: Path,
    tmp: Path = None,
    free_original: bool = False,
    rm_original: bool = False,
) -> Path:
    """Read the given files and concatenate them to the output file.

    Can remove original files on completion, or just write dummy content into them to free disk.
    """
    if tmp is None:
        tmp = _get_tmp(output)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cc_net/regroup.py [63:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    inputs: List[Path],
    output: Path,
    tmp: Path = None,
    free_original: bool = False,
    rm_original: bool = False,
) -> Path:
    """Same as reshard but don't re-compress the output.

    This will lead to a bigger output file, especially if the shards are very small.
    """
    if tmp is None:
        tmp = _get_tmp(output)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



