(self, n: ast3.Tuple)
| 1749 | |
| 1750 | # Tuple(expr* elts, expr_context ctx) |
| 1751 | def visit_Tuple(self, n: ast3.Tuple) -> TupleExpr: |
| 1752 | e = TupleExpr(self.translate_expr_list(n.elts)) |
| 1753 | return self.set_line(e, n) |
| 1754 | |
| 1755 | # Slice(expr? lower, expr? upper, expr? step) |
| 1756 | def visit_Slice(self, n: ast3.Slice) -> SliceExpr: |
nothing calls this directly
no test coverage detected