Skip to content

Commit 93377fe

Browse files
Temporarily skip some code.
1 parent d6ed560 commit 93377fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/codeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1730,8 +1730,8 @@ identify_unbound_names(PyThreadState *tstate, PyCodeObject *co,
17301730
assert(counts == NULL || counts->total == 0);
17311731
struct co_unbound_counts unbound = {0};
17321732
Py_ssize_t len = Py_SIZE(co);
1733-
return 0;
17341733
for (int i = 0; i < len; i++) {
1734+
break;
17351735
_Py_CODEUNIT inst = _Py_GetBaseCodeUnit(co, i);
17361736
if (inst.op.code == LOAD_ATTR) {
17371737
int oparg = GET_OPARG(co, i, inst.op.arg);

0 commit comments

Comments
 (0)