diff options
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index b900de5..5a6de5b 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4742,6 +4742,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -4761,6 +4762,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -4785,6 +4787,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -4816,6 +4819,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -4854,6 +4858,7 @@ handle_eval_breaker: */ goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -4896,6 +4901,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -5013,6 +5019,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -5040,6 +5047,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } @@ -5067,6 +5075,7 @@ handle_eval_breaker: if (res == NULL) { goto error; } + CHECK_EVAL_BREAKER(); DISPATCH(); } |