From 0d15908629647f9c9a027c89db74b411e90380c1 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 7 Aug 2000 21:02:50 +0000 Subject: [PATCH] Added a missing } in the USE_STACKCHECK code. --- Modules/_sre.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/_sre.c b/Modules/_sre.c index fb8fc2a64e1..a0e284dd176 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -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)