From 4ba5c88a3f4cc68f9c117930c6533705eb9c6c50 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 9 Sep 2016 19:31:12 -0700 Subject: just start with an int rather than casting --- Python/ast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/ast.c b/Python/ast.c index bc9b43e..092031c 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -4326,7 +4326,7 @@ fstring_find_expr(const char **str, const char *end, int raw, int recurse_lvl, const char *expr_end; expr_ty simple_expression; expr_ty format_spec = NULL; /* Optional format specifier. */ - char conversion = -1; /* The conversion char. -1 if not specified. */ + int conversion = -1; /* The conversion char. -1 if not specified. */ /* 0 if we're not in a string, else the quote char we're trying to match (single or double quote). */ @@ -4502,7 +4502,7 @@ fstring_find_expr(const char **str, const char *end, int raw, int recurse_lvl, /* And now create the FormattedValue node that represents this entire expression with the conversion and format spec. */ - *expression = FormattedValue(simple_expression, (int)conversion, + *expression = FormattedValue(simple_expression, conversion, format_spec, LINENO(n), n->n_col_offset, c->c_arena); if (!*expression) -- cgit v0.12