[Python-checkins] r46299 - python/trunk/Python/ceval.c

fredrik.lundh python-checkins at python.org
Fri May 26 14:01:49 CEST 2006


Author: fredrik.lundh
Date: Fri May 26 14:01:49 2006
New Revision: 46299

Modified:
   python/trunk/Python/ceval.c
Log:
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...



Modified: python/trunk/Python/ceval.c
==============================================================================
--- python/trunk/Python/ceval.c	(original)
+++ python/trunk/Python/ceval.c	Fri May 26 14:01:49 2006
@@ -105,7 +105,7 @@
 #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 *,


More information about the Python-checkins mailing list