bpo-39522: Always initialise kind attribute in constant ast nodes (GH-19525)

diff --git a/Python/ast_opt.c b/Python/ast_opt.c
index 1393c34..1766321 100644
--- a/Python/ast_opt.c
+++ b/Python/ast_opt.c
@@ -19,6 +19,7 @@
         return 0;
     }
     node->kind = Constant_kind;
+    node->v.Constant.kind = NULL;
     node->v.Constant.value = val;
     return 1;
 }