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

Function read_str_list

mypy/cache.py:442–445  ·  view source on GitHub ↗
(data: ReadBuffer)

Source from the content-addressed store, hash-verified

440
441
442def read_str_list(data: ReadBuffer) -> list[str]:
443 assert read_tag(data) == LIST_STR
444 size = read_int_bare(data)
445 return [read_str_bare(data) for _ in range(size)]
446
447
448def write_str_list(data: WriteBuffer, value: Sequence[str]) -> None:

Callers 12

readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.85
readMethod · 0.85

Calls 1

rangeClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…