Tuple literal expression (..., ...) Also lvalue sequences (..., ...) and [..., ...]
| 2948 | |
| 2949 | |
| 2950 | class TupleExpr(Expression): |
| 2951 | """Tuple literal expression (..., ...) |
| 2952 | |
| 2953 | Also lvalue sequences (..., ...) and [..., ...]""" |
| 2954 | |
| 2955 | __slots__ = ("items",) |
| 2956 | |
| 2957 | __match_args__ = ("items",) |
| 2958 | |
| 2959 | items: list[Expression] |
| 2960 | |
| 2961 | def __init__(self, items: list[Expression]) -> None: |
| 2962 | super().__init__() |
| 2963 | self.items = items |
| 2964 | |
| 2965 | def accept(self, visitor: ExpressionVisitor[T]) -> T: |
| 2966 | return visitor.visit_tuple_expr(self) |
| 2967 | |
| 2968 | |
| 2969 | class SetExpr(Expression): |
no outgoing calls
no test coverage detected
searching dependent graphs…