Searched refs:fill_with (Results 1 – 2 of 2) sorted by relevance
701 def do_slice(value, slices, fill_with=None): argument732 if fill_with is not None and slice_number >= slices_with_extra:733 tmp.append(fill_with)737 def do_batch(value, linecount, fill_with=None): argument763 if fill_with is not None and len(tmp) < linecount:764 tmp += [fill_with] * (linecount - len(tmp))
128 async def do_slice(value, slices, fill_with=None): argument129 return filters.do_slice(await auto_to_seq(value), slices, fill_with)