summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2006-05-26 12:01:49 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2006-05-26 12:01:49 (GMT)
commit1b94940165b4e2b789855b24ea0297ebed691c46 (patch)
treebfa2c2fdea592c60f92fe1ae40f9c39f133a24c1 /Python/ceval.c
parenta0fcf502dfef079c6dabd595f6d159be14dea299 (diff)
downloadcpython-1b94940165b4e2b789855b24ea0297ebed691c46.zip
cpython-1b94940165b4e2b789855b24ea0297ebed691c46.tar.gz
cpython-1b94940165b4e2b789855b24ea0297ebed691c46.tar.bz2
Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers,
but Trent's copy thinks that it's an anachronism...
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index da27fff..c5ae6cc 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -105,7 +105,7 @@ Py_LOCAL(PyObject *) load_args(PyObject ***, int);
#define CALL_FLAG_KW 2
#ifdef LLTRACE
-Py_LOCAL(int) lltrace;
+static int lltrace;
Py_LOCAL(int) prtrace(PyObject *, char *);
#endif
Py_LOCAL(int) call_trace(Py_tracefunc, PyObject *, PyFrameObject *,