Skip to content
Closed
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
Merge branch 'master' into weakref-support
  • Loading branch information
amos402 committed Feb 19, 2021
commit ea3d47a7972731fa606266e949edb434f3ac1ec4
3 changes: 1 addition & 2 deletions src/runtime/runtime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2030,9 +2030,8 @@ internal static bool PyType_SUPPORTS_WEAKREFS(IntPtr type)

internal static void PyObject_GC_Track(IntPtr tp) => Delegates.PyObject_GC_Track(tp);


internal static void PyObject_GC_UnTrack(IntPtr tp) => Delegates.PyObject_GC_UnTrack(tp);

internal static void _PyObject_Dump(IntPtr ob) => Delegates._PyObject_Dump(ob);

internal static void PyObject_ClearWeakRefs(IntPtr obj) => Delegates.PyObject_ClearWeakRefs(obj);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.