From 5f827f4e9b8cd1117c05246abd4ce7971a94c798 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Tue, 23 Jan 2001 01:26:20 +0000 Subject: Visit the initial test element of the listmaker for a list comprehension. Fixes bug reported by Tim Peters. --- Python/compile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index a9ff3df..131f97b 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -4210,7 +4210,8 @@ symtable_node(struct symtable *st, node *n) case listmaker: if (NCH(n) > 1 && TYPE(CHILD(n, 1)) == list_for) { symtable_list_comprehension(st, CHILD(n, 1)); - break; + n = CHILD(n, 0); + goto loop; } case atom: if (TYPE(n) == atom && TYPE(CHILD(n, 0)) == NAME) { -- cgit v0.12