0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

Added a missing } in the USE_STACKCHECK code.

This commit is contained in:
Jack Jansen 2000-08-07 21:02:50 +00:00
parent 275abb3f1b
commit 0d15908629

View File

@ -570,6 +570,7 @@ SRE_MATCH(SRE_STATE* state, SRE_CODE* pattern, int level)
#if defined(USE_STACKCHECK)
if (level % 10 == 0 && PyOS_CheckStack()) {
return SRE_ERROR_RECURSION_LIMIT;
}
#endif
#if defined(USE_RECURSION_LIMIT)