From: Victor Stinner Date: Fri, 15 Dec 2017 15:29:48 +0000 (+0100) Subject: compile.c: Remove unused varible (#4886) X-Git-Tag: v3.6.5rc1~199 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da2b79867eb54c9964597ba30123bf9196baf0c2;p=thirdparty%2FPython%2Fcpython.git compile.c: Remove unused varible (#4886) Fix a compiler warning. --- diff --git a/Python/compile.c b/Python/compile.c index 9984d55858a4..13b4fb830766 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -5155,7 +5155,6 @@ compute_code_flags(struct compiler *c) { PySTEntryObject *ste = c->u->u_ste; int flags = 0; - Py_ssize_t n; if (ste->ste_type == FunctionBlock) { flags |= CO_NEWLOCALS | CO_OPTIMIZED; if (ste->ste_nested)