[Python-checkins] python/dist/src/Python ceval.c,2.402,2.403
mondragon at users.sourceforge.net
mondragon at users.sourceforge.net
Tue Jun 22 00:18:53 EDT 2004
Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv934/Python
Modified Files:
ceval.c
Log Message:
One forgotten C profiling #ifdef
Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.402
retrieving revision 2.403
diff -C2 -d -r2.402 -r2.403
*** ceval.c 22 Jun 2004 03:51:38 -0000 2.402
--- ceval.c 22 Jun 2004 04:18:47 -0000 2.403
***************
*** 3489,3495 ****
PyObject *x, *w;
int are_tracing = 0;
-
PyThreadState *tstate = PyThreadState_GET();
/* Always dispatch PyCFunction first, because these are
--- 3489,3496 ----
PyObject *x, *w;
+ #ifdef WITH_C_PROF
int are_tracing = 0;
PyThreadState *tstate = PyThreadState_GET();
+ #endif
/* Always dispatch PyCFunction first, because these are
More information about the Python-checkins
mailing list