File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -907,9 +907,9 @@ static void
907907queue_untracked_obj_decref (PyObject * op , struct collection_state * state )
908908{
909909 assert (Py_REFCNT (op ) == 0 );
910- // We have to treat frozen objects as untracked in this function or else
911- // they might be picked up in a future collection, which breaks the assumption
912- // that all incoming objects have a non-zero reference count.
910+ // gh-142975: We have to treat frozen objects as untracked in this function
911+ // or else they might be picked up in a future collection, which breaks the
912+ // assumption that all incoming objects have a non-zero reference count.
913913 if (!_PyObject_GC_IS_TRACKED (op ) || gc_is_frozen (op )) {
914914 // GC objects with zero refcount are handled subsequently by the
915915 // GC as if they were cyclic trash, but we have to handle dead
You can’t perform that action at this time.
0 commit comments