MCPcopy Index your code
hub / github.com/python/mypy / write_bytes_list

Function write_bytes_list

mypy/cache.py:461–465  ·  view source on GitHub ↗
(data: WriteBuffer, value: Sequence[bytes])

Source from the content-addressed store, hash-verified

459
460
461def write_bytes_list(data: WriteBuffer, value: Sequence[bytes]) -> None:
462 write_tag(data, LIST_BYTES)
463 write_int_bare(data, len(value))
464 for item in value:
465 write_bytes_bare(data, item)
466
467
468def read_str_opt_list(data: ReadBuffer) -> list[str | None]:

Callers 2

writeMethod · 0.85
writeMethod · 0.85

Calls 1

lenFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…