diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-23 12:16:35 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-23 12:16:35 (GMT) |
commit | e36fe53d68b9fe8ff340ee8d7d35ab4822db69e0 (patch) | |
tree | 3f8585d1cdd739d1de657d390fd16e4bc639514a /Python | |
parent | 02c9ab568d1458e4c1ea2ca700c5d25bb31e8002 (diff) | |
download | cpython-e36fe53d68b9fe8ff340ee8d7d35ab4822db69e0.zip cpython-e36fe53d68b9fe8ff340ee8d7d35ab4822db69e0.tar.gz cpython-e36fe53d68b9fe8ff340ee8d7d35ab4822db69e0.tar.bz2 |
How did the comment get there?
Diffstat (limited to 'Python')
-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)); |