use DISPATCH() instead of continue

This commit is contained in:
Benjamin Peterson 2010-09-10 22:02:31 +00:00
parent d032532bb9
commit 00ebe2cdc4
1 changed files with 1 additions and 1 deletions

View File

@ -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);