]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unnecessary local variable.
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>
Sun, 23 Oct 2005 18:52:36 +0000 (18:52 +0000)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>
Sun, 23 Oct 2005 18:52:36 +0000 (18:52 +0000)
Python/compile.c

index fe6fd50daf7063faa36e40e66095caead2b3e7b3..b43c2d7db71886862700a489ef0257ce81627107 100644 (file)
@@ -2701,7 +2701,7 @@ inplace_binop(struct compiler *c, operator_ty op)
 static int
 compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx)
 {
-       int op, scope, r, arg;
+       int op, scope, arg;
        enum { OP_FAST, OP_GLOBAL, OP_DEREF, OP_NAME } optype;
 
         PyObject *dict = c->u->u_names;
@@ -2811,9 +2811,8 @@ compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx)
        arg = compiler_add_o(c, dict, mangled);
        if (arg < 0)
                return 0;
-       r = compiler_addop_i(c, op, arg);
        Py_DECREF(mangled);
-       return r;
+       return compiler_addop_i(c, op, arg);
 }
 
 static int