Skip to content

Commit fef0682

Browse files
author
dse
committed
Probably fix.
1 parent 866de1a commit fef0682

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/runtime/classbase.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,8 @@ public static void tp_dealloc(IntPtr ob)
278278
}
279279
Runtime.PyObject_GC_UnTrack(self.pyHandle);
280280
Runtime.PyObject_GC_Del(self.pyHandle);
281-
Runtime.XDecref(self.tpHandle);
281+
Console.Error.WriteLine("Hello from tp_dealloc");
282+
//Runtime.XDecref(self.tpHandle);
282283
self.gcHandle.Free();
283284
}
284285
}

0 commit comments

Comments
 (0)