Fix uninitialized value. (Why are we using bools instead of ints, like we do
everywhere else?)
diff --git a/Python/ast.c b/Python/ast.c
index 7edd345..4e508eb 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -1415,7 +1415,7 @@
             int j;
             slice_ty slc;
             expr_ty e;
-            bool simple;
+            bool simple = true;
             asdl_seq *slices, *elts;
             slices = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena);
             if (!slices)