commit | 368b4b74050290a77f32cafa8c7fac3542bc6308 | [log] [tgz] |
---|---|---|
author | Brett Cannon <brett@python.org> | Mon Apr 02 12:17:59 2012 -0400 |
committer | Brett Cannon <brett@python.org> | Mon Apr 02 12:17:59 2012 -0400 |
tree | 88affda2c3eb36011151ec3145bceb624df0d11c | |
parent | 2247775bfa38f27aa3b36b7740cf2cec98356235 [diff] |
Guard an LLTRACE variable to silence an unused variable warning.
diff --git a/Python/ceval.c b/Python/ceval.c index ae0bd24..7908d44 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -822,7 +822,9 @@ PyObject *names; PyObject *consts; +#ifdef LLTRACE _Py_IDENTIFIER(__ltrace__); +#endif /* Computed GOTOs, or the-optimization-commonly-but-improperly-known-as-"threaded code"