summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-09-10 22:02:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-09-10 22:02:31 (GMT)
commit00ebe2cdc46ea759209ccea1c96d6b75fd3c07c5 (patch)
tree976b49f952512d94fded52f79b3f6dde755b494b /Python
parentd032532bb9307a4163152a808e96d471c9f180b1 (diff)
downloadcpython-00ebe2cdc46ea759209ccea1c96d6b75fd3c07c5.zip
cpython-00ebe2cdc46ea759209ccea1c96d6b75fd3c07c5.tar.gz
cpython-00ebe2cdc46ea759209ccea1c96d6b75fd3c07c5.tar.bz2
use DISPATCH() instead of continue
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index f0d278c..ff505a5 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);