compile.c: Remove unused varible (#4886)

Fix a compiler warning.
This commit is contained in:
Victor Stinner 2017-12-15 16:29:48 +01:00 committed by GitHub
parent 77bf6da725
commit da2b79867e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -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)