URL: http://github.com/python/cpython/commit/4513ef8b7a4a684deea0dda23a760f4596a1097c
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c0e63 commit 4513ef8Copy full SHA for 4513ef8
1 file changed
Include/ceval.h
@@ -51,7 +51,7 @@ PyAPI_FUNC(int) Py_GetRecursionLimit(void);
51
_Py_CheckRecursiveCall(where))
52
#define Py_LeaveRecursiveCall() \
53
do{ if((--PyThreadState_GET()->recursion_depth) < \
54
- _Py_CheckRecursionLimit - 50); \
+ _Py_CheckRecursionLimit - 50) \
55
PyThreadState_GET()->overflowed = 0; \
56
} while(0)
57
PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
0 commit comments