Kaydet (Commit) 00ebe2cd authored tarafından Benjamin Peterson's avatar Benjamin Peterson

use DISPATCH() instead of continue

üst d032532b
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment