Skip to content

Commit a7647c2

Browse files
committed
fix for Lib/test/test_future_stmt/test_future.py: test_annotations
1 parent 6a2aa26 commit a7647c2

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

ast/src/unparse.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -379,12 +379,7 @@ impl<'a> Unparser<'a> {
379379
}
380380
Expr::Subscript(crate::ExprSubscript { value, slice, .. }) => {
381381
self.unparse_expr(value, precedence::ATOM)?;
382-
let mut lvl = precedence::TUPLE;
383-
if let Expr::Tuple(crate::ExprTuple { elts, .. }) = slice.as_ref() {
384-
if elts.iter().any(|expr| expr.is_starred_expr()) {
385-
lvl += 1
386-
}
387-
}
382+
let lvl = precedence::TUPLE;
388383
self.p("[")?;
389384
self.unparse_expr(slice, lvl)?;
390385
self.p("]")?;

0 commit comments

Comments
 (0)