| 2150 | /// See also [Tuple](https://docs.python.org/3/library/ast.html#ast.Tuple) |
| 2151 | #[derive(Clone, Debug, PartialEq, Eq, Hash)] |
| 2152 | pub struct TupleExpr { |
| 2153 | pub range: TextRange, |
| 2154 | pub elts: Vec<Expr>, |
| 2155 | pub ctx: ContextExpr, |
| 2156 | |
| 2157 | /// Whether the tuple is parenthesized in the source code. |
| 2158 | pub parenthesized: bool, |
| 2159 | } |
| 2160 | |
| 2161 | impl From<TupleExpr> for Expr { |
| 2162 | fn from(payload: TupleExpr) -> Self { |