[Python-3000-checkins] r60750 - python/branches/py3k/Include/ceval.h

martin.v.loewis python-3000-checkins at python.org
Tue Feb 12 20:30:36 CET 2008


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);


More information about the Python-3000-checkins mailing list