Author: martin.v.loewis
Date: Tue Feb 12 20:30:35 2008
New Revision: 60750
Modified:
python/branches/py3k/Include/ceval.h
Log:
Bug #1595: Remove extra semicolon.
Modified: python/branches/py3k/Include/ceval.h
==============================================================================
--- python/branches/py3k/Include/ceval.h (original)
+++ python/branches/py3k/Include/ceval.h Tue Feb 12 20:30:35 2008
@@ -51,7 +51,7 @@
_Py_CheckRecursiveCall(where))
#define Py_LeaveRecursiveCall() \
do{ if((--PyThreadState_GET()->recursion_depth) < \
- _Py_CheckRecursionLimit - 50); \
+ _Py_CheckRecursionLimit - 50) \
PyThreadState_GET()->overflowed = 0; \
} while(0)
PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins