mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
use DISPATCH() instead of continue
This commit is contained in:
parent
d032532bb9
commit
00ebe2cdc4
1 changed files with 1 additions and 1 deletions
|
@ -2148,7 +2148,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
|
||||||
x = freevars[oparg];
|
x = freevars[oparg];
|
||||||
if (PyCell_GET(x) != NULL) {
|
if (PyCell_GET(x) != NULL) {
|
||||||
PyCell_Set(x, NULL);
|
PyCell_Set(x, NULL);
|
||||||
continue;
|
DISPATCH();
|
||||||
}
|
}
|
||||||
err = -1;
|
err = -1;
|
||||||
format_exc_unbound(co, oparg);
|
format_exc_unbound(co, oparg);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue