From: Tim Peters Date: Wed, 3 Aug 2005 18:33:05 +0000 (+0000) Subject: com_yield_expr(): Squash new compiler wng about unreferenced local. X-Git-Tag: v2.5a0~1542 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea9dcdc0621e615ee93a961e63727c5aa394d315;p=thirdparty%2FPython%2Fcpython.git com_yield_expr(): Squash new compiler wng about unreferenced local. --- diff --git a/Python/compile.c b/Python/compile.c index 56b3a3e5927b..99ccf292529f 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");