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 958c321 commit 37e6280Copy full SHA for 37e6280
src/runtime/Types/ClassDerived.cs
@@ -945,7 +945,9 @@ internal static void Finalize(IntPtr derived)
945
// rare case when it's needed
946
// matches correspdonging PyObject_GC_UnTrack
947
// in ClassDerivedObject.tp_dealloc
948
- Runtime.PyObject_GC_Del(@ref.Steal());
+
949
+ // Deactivated for now to fix shutdown issues
950
+ // Runtime.PyObject_GC_Del(@ref.Steal());
951
952
// must decref our type
953
Runtime.XDecref(StolenReference.DangerousFromPointer(type.DangerousGetAddress()));
0 commit comments