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

Function read_expression_list

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

Source from the content-addressed store, hash-verified

1655
1656
1657def read_expression_list(state: State, data: ReadBuffer) -> list[Expression]:
1658 expect_tag(data, LIST_GEN)
1659 n = read_int_bare(data)
1660 return [read_expression(state, data) for i in range(n)]
1661
1662
1663def read_generator_expr(state: State, data: ReadBuffer) -> GeneratorExpr:

Callers 4

read_statementFunction · 0.85
read_class_defFunction · 0.85
read_expressionFunction · 0.85
read_generator_exprFunction · 0.85

Calls 3

expect_tagFunction · 0.85
read_expressionFunction · 0.85
rangeClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…