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

Function read_fstring_items

mypy/nativeparse.py:1572–1575  ·  view source on GitHub ↗
(state: State, data: ReadBuffer)

Source from the content-addressed store, hash-verified

1570
1571
1572def read_fstring_items(state: State, data: ReadBuffer) -> Expression:
1573 n = read_int(data)
1574 items = [read_fstring_item(state, data) for _ in range(n)]
1575 return build_fstring_join(data, items)
1576
1577
1578def build_fstring_join(data: ReadBuffer, items: list[Expression]) -> Expression:

Callers 2

read_expressionFunction · 0.85
read_fstring_itemFunction · 0.85

Calls 4

read_intFunction · 0.90
read_fstring_itemFunction · 0.85
rangeClass · 0.85
build_fstring_joinFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…