diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-11-20 01:21:35 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-11-20 01:21:35 (GMT) |
commit | db149ac59b9384648099a971750b8c3151fbfec7 (patch) | |
tree | ba4ffc90a8e673cf9cca164fa5c72f951e902aae /Python | |
parent | 3a2249da1b1d8e5e8a8710be6dbf44c753792063 (diff) | |
download | cpython-db149ac59b9384648099a971750b8c3151fbfec7.zip cpython-db149ac59b9384648099a971750b8c3151fbfec7.tar.gz cpython-db149ac59b9384648099a971750b8c3151fbfec7.tar.bz2 |
Merged revisions 76425 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r76425 | benjamin.peterson | 2009-11-19 19:19:41 -0600 (Thu, 19 Nov 2009) | 13 lines
Merged revisions 76423-76424 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76423 | benjamin.peterson | 2009-11-19 19:15:53 -0600 (Thu, 19 Nov 2009) | 1 line
provide line number for lambdas
........
r76424 | benjamin.peterson | 2009-11-19 19:16:58 -0600 (Thu, 19 Nov 2009) | 1 line
genexps have linenos
........
................
Diffstat (limited to 'Python')
-rw-r--r-- | Python/symtable.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index f10e382..9619f75 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1331,9 +1331,8 @@ symtable_visit_expr(struct symtable *st, expr_ty e) return 0; if (e->v.Lambda.args->defaults) VISIT_SEQ(st, expr, e->v.Lambda.args->defaults); - /* XXX how to get line numbers for expressions */ if (!symtable_enter_block(st, lambda, - FunctionBlock, (void *)e, 0)) + FunctionBlock, (void *)e, e->lineno)) return 0; VISIT_IN_BLOCK(st, arguments, e->v.Lambda.args, (void*)e); VISIT_IN_BLOCK(st, expr, e->v.Lambda.body, (void*)e); @@ -1631,7 +1630,7 @@ symtable_handle_comprehension(struct symtable *st, expr_ty e, VISIT(st, expr, outermost->iter); /* Create comprehension scope for the rest */ if (!scope_name || - !symtable_enter_block(st, scope_name, FunctionBlock, (void *)e, 0)) { + !symtable_enter_block(st, scope_name, FunctionBlock, (void *)e, e->lineno)) { return 0; } st->st_cur->ste_generator = is_generator; |