(self, n: ast3.Subscript)
| 1724 | |
| 1725 | # Subscript(expr value, slice slice, expr_context ctx) |
| 1726 | def visit_Subscript(self, n: ast3.Subscript) -> IndexExpr: |
| 1727 | e = IndexExpr(self.visit(n.value), self.visit(n.slice)) |
| 1728 | return self.set_line(e, n) |
| 1729 | |
| 1730 | # Starred(expr value, expr_context ctx) |
| 1731 | def visit_Starred(self, n: Starred) -> StarExpr: |