From: Brett Cannon Date: Mon, 2 Apr 2012 16:17:59 +0000 (-0400) Subject: Guard an LLTRACE variable to silence an unused variable warning. X-Git-Tag: v3.3.0a3~332 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=368b4b74050290a77f32cafa8c7fac3542bc6308;p=thirdparty%2FPython%2Fcpython.git Guard an LLTRACE variable to silence an unused variable warning. --- diff --git a/Python/ceval.c b/Python/ceval.c index ae0bd242a017..7908d444e187 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -822,7 +822,9 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) PyObject *names; PyObject *consts; +#ifdef LLTRACE _Py_IDENTIFIER(__ltrace__); +#endif /* Computed GOTOs, or the-optimization-commonly-but-improperly-known-as-"threaded code"