(self, l: Sequence[AST])
| 441 | return res |
| 442 | |
| 443 | def translate_expr_list(self, l: Sequence[AST]) -> list[Expression]: |
| 444 | return cast(list[Expression], self.translate_opt_expr_list(l)) |
| 445 | |
| 446 | def get_lineno(self, node: ast3.expr | ast3.stmt) -> int: |
| 447 | if ( |
no test coverage detected