Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update optimizer.c
  • Loading branch information
ashm-dev committed Dec 11, 2025
commit 29b4663fc269dcab63603ea057a3a8fbd9ece133
7 changes: 0 additions & 7 deletions Python/optimizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,6 @@ _PyOptimizer_Optimize(
} else {
// An executor inserted into the code object now has a strong reference
// to it from the code object. Thus, we don't need this reference anymore.
PyGC_Head *gc = ((PyGC_Head*)executor) - 1;
printf("DEBUG: executor=%p, refcnt=%zd, gc_next=%p, gc_prev=%p\n",
(void*)executor,
Py_REFCNT(executor),
(void*)(gc->_gc_next),
(void*)(gc->_gc_prev));
fflush(stdout);
Py_DECREF(executor);
}
interp->compiling = false;
Expand Down
Loading