summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 56b3a3e..99ccf29 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -3744,7 +3744,6 @@ com_return_stmt(struct compiling *c, node *n)
static void
com_yield_expr(struct compiling *c, node *n)
{
- int i;
REQ(n, yield_expr); /* 'yield' testlist */
if (!c->c_infunction) {
com_error(c, PyExc_SyntaxError, "'yield' outside function");