X Tutup
Skip to content

Commit b101df0

Browse files
author
christian.heimes
committed
How did the comment get there?
git-svn-id: http://svn.python.org/projects/python/trunk@59134 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 205a7eb commit b101df0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ast.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ ast_for_atom(struct compiling *c, const node *n)
13411341
"backquote not supported in 3.x",
13421342
"<unknown>", LINENO(n),
13431343
NULL, NULL)) {
1344-
; //return NULL;
1344+
return NULL;
13451345
}
13461346
}
13471347
expr_ty expression = ast_for_testlist(c, CHILD(n, 1));

0 commit comments

Comments
 (0)
X Tutup