Lines Matching refs:comprehension
37 "assignment expression within a comprehension cannot be used in a class body"
40 "assignment expression cannot rebind comprehension iteration variable '%U'"
43 "comprehension inner loop cannot rebind assignment expression target '%U'"
46 "assignment expression cannot be used in a comprehension iterable expression"
983 * outermost iterator expression of a comprehension, even those inside
984 * a nested comprehension or a lambda expression.
1054 /* This name is an iteration variable in a comprehension,
1491 /* If we find a comprehension scope, check for a target
1555 /* Assignment isn't allowed in a comprehension iterable expression */
1565 /* Inside a comprehension body, so find the right target scope */
2019 /* Create comprehension scope for the rest */
2053 /* Visit the rest of the comprehension body */
2055 VISIT_SEQ_TAIL(st, comprehension, generators, 1);
2123 (type == ListComprehension) ? "'yield' inside list comprehension" :
2124 (type == SetComprehension) ? "'yield' inside set comprehension" :
2125 (type == DictComprehension) ? "'yield' inside dict comprehension" :