use DISPATCH() instead of continue
This commit is contained in:
parent
d032532bb9
commit
00ebe2cdc4
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue