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

Function read_int_list

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

Source from the content-addressed store, hash-verified

427
428
429def read_int_list(data: ReadBuffer) -> list[int]:
430 assert read_tag(data) == LIST_INT
431 size = read_int_bare(data)
432 return [read_int_bare(data) for _ in range(size)]
433
434
435def write_int_list(data: WriteBuffer, value: list[int]) -> None:

Callers 10

readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
readMethod · 0.90
should_shutdownFunction · 0.90
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…