diff options
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index 9354b59..a9bc2d4 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", "<unknown>", LINENO(n), NULL, NULL)) { - ; //return NULL; + return NULL; } } expr_ty expression = ast_for_testlist(c, CHILD(n, 1)); |