summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-11 16:25:52 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-06-11 16:25:52 (GMT)
commite5fa5fe8fcf2a654dbae1bd6b6b49c0887d859b4 (patch)
tree2227fab5a5a505c3e85faf3644a8bcb5ad803e95 /Python
parentff1081874a2c15bd903828b4f27d62101f70f971 (diff)
downloadcpython-e5fa5fe8fcf2a654dbae1bd6b6b49c0887d859b4.zip
cpython-e5fa5fe8fcf2a654dbae1bd6b6b49c0887d859b4.tar.gz
cpython-e5fa5fe8fcf2a654dbae1bd6b6b49c0887d859b4.tar.bz2
remove duplicate check
Diffstat (limited to 'Python')
-rw-r--r--Python/ast.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 2cc41b2..8e1c530 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -2120,10 +2120,6 @@ ast_for_expr_stmt(struct compiling *c, const node *n)
for (i = 0; i < NCH(n) - 2; i += 2) {
expr_ty e;
node *ch = CHILD(n, i);
- if (TYPE(ch) == yield_expr) {
- ast_error(ch, "assignment to yield expression not possible");
- return NULL;
- }
e = ast_for_testlist(c, ch);
/* set context to assign */