From: Christian Heimes Date: Fri, 23 Nov 2007 12:16:35 +0000 (+0000) Subject: How did the comment get there? X-Git-Tag: v2.6a1~1017 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e36fe53d68b9fe8ff340ee8d7d35ab4822db69e0;p=thirdparty%2FPython%2Fcpython.git How did the comment get there? --- diff --git a/Python/ast.c b/Python/ast.c index 9354b59cb0d5..a9bc2d47a5aa 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));