(lines: Iterable[str])
| 140 | |
| 141 | |
| 142 | def deindent(lines: Iterable[str]) -> List[str]: |
| 143 | return textwrap.dedent("\n".join(lines)).splitlines() |
| 144 | |
| 145 | |
| 146 | def get_statement_startend2(lineno: int, node: ast.AST) -> Tuple[int, Optional[int]]: |
no outgoing calls