We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ce4b53 commit bde4926Copy full SHA for bde4926
1 file changed
Python/optimizer.c
@@ -2204,11 +2204,7 @@ _PyDumpExecutors(FILE *out)
2204
fprintf(out, " node [colorscheme=greys9]\n");
2205
PyInterpreterState *interp = PyInterpreterState_Get();
2206
for (size_t i = 0; i < interp->executor_count; i++) {
2207
- _PyExecutorObject *exec = interp->executor_ptrs[i];
2208
- if (exec->vm_data.code == NULL) {
2209
- continue;
2210
- }
2211
- executor_to_gv(exec, out);
+ executor_to_gv(interp->executor_ptrs[i], out);
2212
}
2213
fprintf(out, "}\n\n");
2214
return 0;
0 commit comments