From e36fe53d68b9fe8ff340ee8d7d35ab4822db69e0 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 23 Nov 2007 12:16:35 +0000 Subject: [PATCH] How did the comment get there? --- Python/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ast.c b/Python/ast.c index 9354b59cb0..a9bc2d47a5 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1341,7 +1341,7 @@ ast_for_atom(struct compiling *c, const node *n) "backquote not supported in 3.x", "", LINENO(n), NULL, NULL)) { - ; //return NULL; + return NULL; } } expr_ty expression = ast_for_testlist(c, CHILD(n, 1)); -- 2.50.1