From: Ezio Melotti Date: Wed, 21 Nov 2012 16:36:08 +0000 (+0200) Subject: Remove unused variabile "plain" in builtin_exec. X-Git-Tag: v3.2.4rc1~322 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c76aa6b234fb1496b35488f30cca2fece467354;p=thirdparty%2FPython%2Fcpython.git Remove unused variabile "plain" in builtin_exec. --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index b85e37bc2954..35b2cdc4b239 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -793,7 +793,6 @@ builtin_exec(PyObject *self, PyObject *args) { PyObject *v; PyObject *prog, *globals = Py_None, *locals = Py_None; - int plain = 0; if (!PyArg_UnpackTuple(args, "exec", 1, 3, &prog, &globals, &locals)) return NULL; @@ -802,7 +801,6 @@ builtin_exec(PyObject *self, PyObject *args) globals = PyEval_GetGlobals(); if (locals == Py_None) { locals = PyEval_GetLocals(); - plain = 1; } if (!globals || !locals) { PyErr_SetString(PyExc_SystemError,