Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 00ebe2c

Browse files
committed
use DISPATCH() instead of continue
1 parent d032532 commit 00ebe2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2148,7 +2148,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
21482148
x = freevars[oparg];
21492149
if (PyCell_GET(x) != NULL) {
21502150
PyCell_Set(x, NULL);
2151-
continue;
2151+
DISPATCH();
21522152
}
21532153
err = -1;
21542154
format_exc_unbound(co, oparg);

0 commit comments

Comments
 (0)