Skip to content

Commit 29b4663

Browse files
committed
Update optimizer.c
1 parent bb950c2 commit 29b4663

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Python/optimizer.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,6 @@ _PyOptimizer_Optimize(
193193
} else {
194194
// An executor inserted into the code object now has a strong reference
195195
// to it from the code object. Thus, we don't need this reference anymore.
196-
PyGC_Head *gc = ((PyGC_Head*)executor) - 1;
197-
printf("DEBUG: executor=%p, refcnt=%zd, gc_next=%p, gc_prev=%p\n",
198-
(void*)executor,
199-
Py_REFCNT(executor),
200-
(void*)(gc->_gc_next),
201-
(void*)(gc->_gc_prev));
202-
fflush(stdout);
203196
Py_DECREF(executor);
204197
}
205198
interp->compiling = false;

0 commit comments

Comments
 (0)