From ea9dcdc0621e615ee93a961e63727c5aa394d315 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 3 Aug 2005 18:33:05 +0000 Subject: com_yield_expr(): Squash new compiler wng about unreferenced local. --- Python/compile.c | 1 - 1 file changed, 1 deletion(-) 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"); -- cgit v0.12