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

Function write_str_list

mypy/cache.py:448–452  ·  view source on GitHub ↗
(data: WriteBuffer, value: Sequence[str])

Source from the content-addressed store, hash-verified

446
447
448def write_str_list(data: WriteBuffer, value: Sequence[str]) -> None:
449 write_tag(data, LIST_STR)
450 write_int_bare(data, len(value))
451 for item in value:
452 write_str_bare(data, item)
453
454
455def read_bytes_list(data: ReadBuffer) -> list[bytes]:

Callers 12

writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
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…