From 26f55c29f2316648939ad12a9d3730a2118da2ea Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Sun, 12 May 2019 01:43:04 +0100 Subject: bpo-36817: Do not decrement reference for expr_text on fstring = parsing failure (GH-13256) --- Python/ast.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/ast.c') diff --git a/Python/ast.c b/Python/ast.c index 585f8b3fba..03da4e7f7f 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -5283,7 +5283,6 @@ unexpected_end_of_string: /* Falls through to error. */ error: - Py_XDECREF(expr_text); return -1; } -- cgit v1.2.1