From 00ebe2cdc46ea759209ccea1c96d6b75fd3c07c5 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 10 Sep 2010 22:02:31 +0000 Subject: [PATCH] use DISPATCH() instead of continue --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index f0d278c5648..ff505a5dcdb 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2148,7 +2148,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) x = freevars[oparg]; if (PyCell_GET(x) != NULL) { PyCell_Set(x, NULL); - continue; + DISPATCH(); } err = -1; format_exc_unbound(co, oparg);