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

Function set_line_column_range

mypy/nativeparse.py:1650–1654  ·  view source on GitHub ↗
(target: Context, src: Context)

Source from the content-addressed store, hash-verified

1648
1649
1650def set_line_column_range(target: Context, src: Context) -> None:
1651 target.line = src.line
1652 target.column = src.column
1653 target.end_line = src.end_line
1654 target.end_column = src.end_column
1655
1656
1657def read_expression_list(state: State, data: ReadBuffer) -> list[Expression]:

Callers 5

read_statementFunction · 0.85
read_parametersFunction · 0.85
read_type_alias_stmtFunction · 0.85
read_call_typeFunction · 0.85
read_expressionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…