From da2b79867eb54c9964597ba30123bf9196baf0c2 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 15 Dec 2017 16:29:48 +0100 Subject: [PATCH] compile.c: Remove unused varible (#4886) Fix a compiler warning. --- Python/compile.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index 9984d55858..13b4fb8307 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) -- 2.40.0