Skip to content

Commit 4fa2ecf

Browse files
Temporarily skip some code.
1 parent 0128404 commit 4fa2ecf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Objects/codeobject.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -1731,6 +1731,7 @@ identify_unbound_names(PyThreadState *tstate, PyCodeObject *co,
17311731
struct co_unbound_counts unbound = {0};
17321732
Py_ssize_t len = Py_SIZE(co);
17331733
for (int i = 0; i < len; i++) {
1734+
printf("%d\n", i);
17341735
_Py_CODEUNIT inst = _Py_GetBaseCodeUnit(co, i);
17351736
continue;
17361737
if (inst.op.code == LOAD_ATTR) {
@@ -1781,9 +1782,9 @@ continue;
17811782
}
17821783
}
17831784
}
1784-
if (counts != NULL) {
1785-
*counts = unbound;
1786-
}
1785+
// if (counts != NULL) {
1786+
// *counts = unbound;
1787+
// }
17871788
return 0;
17881789
}
17891790

0 commit comments

Comments
 (0)